Accordian Set Default Panel Issues

I have a default panel that I am setting in my pages and when
I set default panel to 0 then it opens the first one, but now when
I try to set default panel to 1 it won't open the second one.
http://208.112.121.107/company/mission-statement.asp
(This has the default panel set = 0, Works!)
http://208.112.121.107/company/management-team.asp
(This has the default panel set = 1, doesn't work)
Any help would be appreciated.
Thanks!

Nevermind I figured it out!

Similar Messages

  • Accordian default panel

    I'm using a Spry Accordian in Dreamweaver CS5 and cannot get the a default panel to work properly. No matter what I do it just doesn't work and always displays the first panel as open. I'm following the instructions here:
    http://labs.adobe.com/technologies/spry/articles/accordion_overview/

    Here is a page in development:
    http://startreksoundtracks.com.s134653.gridserver.com/tng/tng-lala-1.html
    I've made some progress by moving the script into the body, which results in all panels closed. This is better than always having the top panel open, but still not the behavior I want. In the above example the "Star Trek: The Next Generation" panel (panel 1) should be open, but it is not.
    In IE9 the panel opens for a fraction of a second and then collpases. I don't see this behavior in other browsers.

  • Accordion tabs w/panel sub-nav - default open issues

    I have a spry accordion in a left sidebar, and I'm using it as navigation for a slideshow for a website I'm working on. Each of my 5 accordion tabs has a different category of slideshow, with each panel having multiple sub-navigation links that each link to a different slideshow which appears in the main part of the page (to the right of the sidebar). Say it's something like this:
    VENUES (tab)
    (start panel)
    Bayside Restaurant (link)
    Historic Ballroom (link)
    Western Ranch (link)
    (end panel)
    ACTIVITIES (tab)
    (start panel)
    Surfing (link)
    Dancing (link)
    Horse back riding (link)
    (end panel)
    The sub-navigation to each slideshow is activated by simply clicking on the text, which I linked with the "point to file" link tool in the properties menu. 
    Ideally, I'd like to work with one template in Dreamweaver for all pages/slideshows I'm creating, but I'm running into a problem.  I know how to change the default panel in the .js so that a different one appears open when a user first accesses the page, but I can't figure out how to get the default panel to change when the user clicks on a different panel and attempts to use the subnavigation.  The subnavigation works just fine (it takes the user to the correct slideshow), but then the panel snaps shut instead of remaining open on the one the user selected.
    (So, to further explain with the example above, say the user wanted to look at all the links in the "Venues" tab, but the default is to have the "Activities" tab open on arrival.  The "Venues" tab opens just fine on the click, but as soon as the user clicks on, say "Bayside Restaurant," the correct slideshow appears to the right, but then the "Venues" tab snaps shut and the "Activities" tab and its sub-navigation appears open again. The user then has to click on the "Venues" tab again if s/he wants to see the other options and view a different slideshow, rather than simply being able to click on the next link.) 
    I tried making multiple templates, with different default panels open as a solution, but that's not working either. . .for some reason it keeps defaulting back.  
    Does this make sense?  Are there any solutions to this problem? Any help would be much appreciated.
    Thanks!
    Rebekka

    I think I found your problem.  It lies in the Javascript:
    <script language="JavaScript" type="text/javascript">
    var indexAccordion = new Spry.Widget.Accordion("indexAccordion");
    var acc1 = new Spry.Widget.Accordion("indexAccordion", { useFixedPanelHeights: false });
    </script>
    You have essentially duplicated the code in order to accomodate the useFixedPanelHeights.  Consolidate it into single one, and remove the duplicate:
    <script language="JavaScript" type="text/javascript"> var acc1 = new Spry.Widget.Accordion("indexAccordion", { useFixedPanelHeights: false }); </script>
    IE might be having trouble understanding the double instances of the script and is ignoring the latter one.  Just keep the latter one and it might fix it.
    Also, thanks for the tip, but I use Chrome's Developer Tools... it just didn't cross my mind since I've been busy =)

  • Setting Default Programs

    Hi
    I have previously mentioned this but didn't get much help. So I am asking the question again hoping to be clearer this time.
    I have a problem with associating programs I want to open certain files. For instance, I press command+I and set 'Keynote' to be default program and change all for .ppt files. But everytime I download a new file .ppt format, Windows Powerpoint opens. Same is the issue with quicktime files, I set VLC as default but quicktime always opens up.
    Are there any other ways to set default programs of your wish to open certain files?
    Thanks,
    Arun

    Use APPLE+I on a file of the type in Finder (Get Info). Toward the bottom of the information panel for the file, you will see an OPEN WITH section. Expand it if nessasary, select the application you want to open files of that type with, then click the "Change all..." button.
    Beavis2084

  • Address Book Server and iOS Default Account Issue

    I have a really strange issue with a Lion Server. 10.7.5
    There are several user accounts on the machine some are local, some are OD accounts. For the most part they work just fine.
    Mail and Calendar accounts seem to be ok and indeed when you set up the Address book account this also work and syncs in both directions.
    Here is the odd issue: For certain accounts, iOS devices do not seem to register them to be available to set as default. The device can use them properly, they do sync fine, if you hit 'import SIM contacts' they will show up as options to choose as the destination account, but if you have iCloud and another contact account set up, they do not show up as options to be chosen as the default contacts account. If they are the only contact accounts, then the 'Set Default Account' option does not even appear in the Mail, Contacts, Calendars settings under Contacts. It appears fine under Calendars and Mail.
    When I installed more than one of the 'faulty' accounts on a single iOS device, then deactivated all but one, the Default Account option reappeared (there was also an iCloud account present), but it soon disappears on its own.
    Has anyone seen this before?
    I'm at a bit of a loss.

    You should see a "CardDAV" option in the AccountType popup in AddressBook.app. That is what you need to select to use AddressBook Server on OS X 10.6.

  • Set Default Printer based on user setting using Powershell script

    Hi 
    I would like to create a script that runs on user log off and captures the default printer (set manually by the user) and then another script to reapply the settings (saved upon log off) when the user logs back in.
    This is because local printers are set as default printer (PDF Creator Programs) when we all use Network Printers so this means a user has to set default printer to the network printer all the time.
    I have found this script to start with:
    $Printer = Get-WmiObject -namespace root\cimv2 -Query “select * from Win32_Printer Where Default = TRUE” -Impersonation 3 | select name | out-file C:\temp\Printer.txt
    But the out file looks like this:
    name
    \\PrinterserverName\Accounts01
    Which I dont see how it can be used on another script plus there are spaces after\Account01 
    Any Ideas please?
    M
    Maelito

    Hi Maelito,
    According to your description, you want to export the default printer name to text file, then read this printer name from text file and set the default printer via Powershell:
    #save printer name to text file
    Get-WmiObject -namespace root\cimv2 -Query “select * from Win32_Printer Where Default = TRUE” -Impersonation 3 | select -ExpandProperty name | out-file C:\temp\Printer.txt
    # read printer name from text file and set default printer
    $name=get-content C:\temp\Printer.txt
    (Get-WmiObject -Class Win32_Printer -Filter "Name='$name'").SetDefaultPrinter()
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Unable to set default program for .pdf

    CURRENT PROBLEM:
    As show in print screen, when i attempt to set default program nth happens at all. The only way i can open any .pdf file now is by 1st opening adobe reader 9 and select the .pdf file manually
    INITIAL STAGE OF PROBLEM:
    Problem started after upgrading to windows 7 from vista. Windows 7 is able to recognise adobe reader 8 as a valid default program since it is in windows.old. Thus the default for .pdf is adobe reader 8 (it was installed in vista).
    Subsequently, installing adobe reader 9 isof  no use as it will be ignored and windows 7 will only continue to use adobe reader 8 as the default reader when i try to open a .pdf file, unless if i manually opened adobe reader 9 and selected a .pdf file manaually
    However, I am unable to uninstall adobe reader 8 as the "program and feature" can only identify adobe reader 9 and does not think that adobe reader 8 exists.
    ATTEMPTs TO SOLVE:
    Thus, I removed windows.old by using the disk cleanup. However, I am still unable to set adobe reader 9 as the default reader. Instead, .pdf are no longer accessible/"open-able" unless I 1st opened adobe reader 9 and then selected a .pdf manaually.
    I've attempted reinstalling and restarting comps etc, they dun seem to help. I suspect the OS is now only able to recognise adobe reader 8 from windows.old as a valid program directory due to some registry issues since it was initally set as the default when i 1st upgraded the OS. Now that adobe reader 8 is removed, there might be some corrupted registry somewhere that needs to be set right again?
    Really need help with this. Thanks a million.

    Thanks guys for showing interest in helping.
    As you guys can see, there's no adobe reader when u expand. Also, I already browsed the reader just in case too. Thus expanding doesnt help. =(
    Also, I cant seem to find the "file type" tab in folder options

  • Setting Default Dashboard based on Groups/users in OBIEE 10g

    Hi,
    I am having a requirement and facing some issues with setting a default dashboard option to the users who ever access the application. Below is the brief description of entire requirement.
    The main requirement is to integrate OBIEE into a .net and silver light application. We will be having a 3 links in the .net application , which in turn displays the OBIEE reports and dashboards upon clicking the 3 links.
    We are using the concept of Init blocks, session variables and Go URL from an OBIEE standpoint for accomplishing this integration requirement. We have also configured LDAP server in OBIEE.
    The issue we are facing is out of the 3 links in .net application, we have one link/icon called dashboard icon which should display bunch of OBIEE dashboard pages in the form of 4 tabs but currently it is showing the My Dashboard home page. For this to achieve to set default dashboard page is to go to My account and change the default dashboard to the desired dashboard and log out and log in back to the application and we will be all set with dashboard pages being displayed upon lcking the dashboard icon but this is manual process for each user as they need to login into the .net application and change the setting s in My Account manually to change the default dashboard setting to the desired one.
    How should I make sure, whoever is logging into the Application (every user) should be able to see the default dashboard pages without changing the options manually by going to My Account.
    The LDAP server is taking care of the Authentication part of the users as every user record is maintained in Active directory which in turn is part of LDAP server.
    To brief high level requirement on single statement is  how to make a default dashboard pages to users based on group in OBIEE. Is there any option in OBIEE, where we can change or set a default dashboard to particular group in OBIEE either in RPD or UI level.
    Appreciate your help on this.
    Let me know if anyone needs any more information in this regard.
    Thank
    Praveen

    You can set 'PORTALPATH'. Have a look at these threads below:
    how to get default dashboards when users logs in
    Re: PORTALPATH for Each Group
    - Bharath

  • Set default fax to black and white

    I have been sending faxes by sending doc files to print and selecting the Officejet fax as my printer option.
    Annoyingly, it keeps reverting to "send color" . I would like to set "sending black and white faxes" as the default. 
    How can I set the default to Black and white?
    I cannot find, in the manual, any reference to setting the default.
    Thanks for any insight--even a page number in the manual would be helpful.

    Hi @deepthinker,
    Welcome to the HP Forums!
    I noticed that you are trying to set default fax to black and white instead of color with your HP Officejet 5610 on Windows 8.1 (64-bit). I am happy to look into this for you!
    I would recommend to open your HP Solution Center (should be a printer icon on your desktop.) Then click on Settings, then click on Printer Settings,  click on the Features tab at the top of the screen, look for the Color Options section near bottom left, and click on Print in grayscale, click the down arrow on High Quality, and select Black Ink Only.
    Here is an image of what I am seeing.
    If that doesn't work try the following:
    Open the HP Solution Center, select Send A Fax, and then look for Black and White only.
    Here is another image to illustrate.
    Hope this information helps, and have a good day!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • How to set default locale in JDK1.3.0 to US?

    Hi, everyone!
    I found the default locale in JDK 1.3.0 is not set to US when I converted our JDK from 1.2 to 1.3.0. So I have to change code by passing Locale.US.
    The output from below test code is:
    default=��100.00
    US=$100.00
    import java.util.Locale;
    import java.text.*;
    public class TestCurrency
    public static void main(String[] args)
    int amount = 100;
    //default
    NumberFormat moneyWriter = NumberFormat.getCurrencyInstance();
    System.out.println ("default=" + moneyWriter.format(amount) );
    //US
    moneyWriter = NumberFormat.getCurrencyInstance(Locale.US);
    System.out.println ("US=" + moneyWriter.format(amount) );
    Can anyone tell me how to set default locale in JDK 1.3.0 to US?
    Thanks!

    You have to set something on your computer (outside Java) to tell it that you are in the US. You didn't say, but I'm going to guess that you are using Windows; if that's so, then try Regional Options in Control Panel.

  • How to set default value in OAMessageLovInputBean?

    Hi,
    How to set default value in OAMessageLovInputBean while loading the page?
    I have tried the following code but its not working.
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    String delToLoc = (String)pageContext.getSessionValue("deliverTOLoc");
    Number delToLocId = (Number)pageContext.getSessionValue("deliverToLocId");
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OAViewObject poHeadervo =
    (OAViewObject)am.findViewObject("PoHeaderMergeVO");
    PoHeaderMergeVORowImpl poHeaderVoRow =
    (PoHeaderMergeVORowImpl)poHeadervo.getCurrentRow();
    if (delToLoc != null && !"".equals(delToLoc)) {   
    // poHeaderVoRow.setShipToLocation(delToLoc);
    OAMessageLovInputBean msb = (OAMessageLovInputBean)webBean.findIndexedChildRecursive("DefaultShipToLocation");
    msb.setValue(pageContext,delToLoc );
    Please suggest me how to resolve this issue.
    Thanks & Regards,
    Sunita

    Hi Cristoph,
                      We tried all the way but could not able assign characteristics value before saving the document. it means we can only see the assigned value using transaction CV02N. but our requirement is to check if the user fills any value into characteristics it should check with default value which we would like to assign whenever we create a new part of the document which we are not able to achieve.we tried a lot but could not succeed.
    Nay idea if we can achieve this....
    Regards
    Bhuwan Tiwari

  • Group Policy - Computer Startup Scripts - Add/Set Default printer

    Good Morning.
    Let's say we have 2 offices, A and B, and only 1 user.  The user is using Roaming Profiles.  Each office has its own printer.
    What I am trying to do, is make a Startup script that is specific to the COMPUTER being logged into so when any user logs into that computer, they get the printer in that office defined and set as default.
    I am able to do this successfully with my script but ONLY if i have the script be on the USER side of GP (i.e. in the Logon script section)
    That is great that that is working however, when my user goes to Office B, they still get mapped to Office A's printer if I use that method.
    So I figured I could just modify my GP and run the same script from the STARTUP section of the computer, rather than the LOGON section of the user.  It does not work.
    Here is my script:
    Set WRFCUNetwork = CreateObject("Wscript.Network")
    PrinterPath = "\\fileserver\MAINTELLER"
    PrinterDriver = "PrinterDriver"
    WRFCUNetwork.AddWindowsPrinterConnection PrinterPath, PrinterDriver
    WRFCUNetwork.SetDefaultPrinter "\\fileserver\MAINTELLER"
    This is where I Have the script placed:
         Computer Configuration -> Windows Settings -> Scripts(Startup/Shutdown)
    Once i'm in there, I double click Startup, click Add, and select my script which is named:
         MainPrinterSetup.vbs
    I have this GP applied to ONE OU, and that OU has ONE computer in it (my test computer)
    I login with a brand new user called "testuser" (creative, huh?) and basically nothing happens
    except they log in and have some Microsoft Document Image Writer printer set as default (which by the way sure does slow the PC down to the point of it almost being broke if anyone actually tries to print to that by accident)
    No Main Teller Printer, no anything.
    The strangest part about this is, if i apply this script to the user LOGON scripts, it works fine, the printer is there, and is set as default. (but see above why that wont work for my situation)
    So obviously the script works fine, but I guess i'm missing something when it comes to applying GP's to Computers rather than Users.
    Can anyone shed some light as to why the script is not running (i'm guessing the script isn't even attempting to run, rather than failing, but i have no way to know that)
    Thank you in advance!!
    Derek Conlon
    Network Administrator
    WRFCU
    EDIT:  Here are the PC's info that i'm working on:
         Server:  Windows Server 2003 Standard Edition (where my GP's are created and managed with AD)
         Target PC:  Windows XP Professional SP3
    EDIT #2:  I manually navigated to the Script file after logging in and "opened" it and it added and set the default printer no problem.  the issue is definately with the script running at startup.

    I wanted to clarify a few things:
    1. While it is true that printer connections are usually per user, it is definitely possible to create "global printers".  There are a number of ways to do this, but two methods that come to mind are using:
    a. "Rundll32 printui.dll,PrintUIEntry" option with the "/ga" switch.  The "/ga" switch is the key here since it allows you to deploy printers "per machine" instead of "per user".  More information
    about this is available at:
    http://members.shaw.ca/bsanders/NetPrinterAllUsers.htm
    http://technet.microsoft.com/en-us/library/ee624057%28WS.10%29.aspx
    http://www.computerperformance.co.uk/Logon/logon_printer_computer.htm
    http://www.robvanderwoude.com/2kprintcontrol.php
    b. The Print Management console that is available in Windows 2003 R2 and higher can help you deploy printers "per machine" in addition to "per user".  More information about this is available at:
    http://www.czsolution.com/print-management/print-management/print-management-console.htm#DeployingPrintersByGroupPolicy
    http://technet.microsoft.com/en-us/library/cc753109%28WS.10%29.aspx
    2. As Guy mentioned, Group Policy Preferences can help set the default printer.  But there is another way to accomplish this.  The problem with the computer startup portion is that it runs before the user logs in.  And applying this script
    in the login script section would not work per computer unless you used loopback processing.  So another way to do this is to place a script that sets the default printer into the "All Users" startup folder.  Items in the "All Users"
    startup folder run for any user that logs into the computer, but it runs in the user's context.  So, this script would effectively set the default printer on a "per machine" basis.  The script method is a cruder way to approach the problem,
    but it will help get the job done.  Here are some resources on setting the default printer via script:
    http://www.intelliadmin.com/index.php/2007/08/set-default-printer-from-a-script
    http://www.computerperformance.co.uk/ezine/ezine17.htm

  • Use GPO to set default language options, IME, display settings?

    new to GPO, we have a small Windows Server 2012 domain, all clients on Win7 or Win8.  All the clients require the following changes, anything I can automate this with GPO?  thanks
    Under Control Panel\Clock, Language, and Region\Language > Add Traditional Chinese HK SAR
    Under Control Panel\Clock, Language, and Region\Language > Traditional Chinese HK SAR > Options, Add Microsoft Quick IME
    Under Control Panel\Clock, Language, and Region\Language\Advanced settings - change language bar hot keys
        - CTRL+SHIFT+0 ------  To English (United States) - US
        - CTRL+SHIFT+0 ------  To Chinese (Traditional, Taiwan) - Microsoft Quick IME
    Under Control Panel > Region > Advimistrative > Change System Locale...  change to Chinese HK SAR for non-unicode programs
    Control Panel\Appearance and Personalization\Display > Change the size of all items, use custom 123%.
    Control Panel\Appearance and Personalization\Display > Update Text size to 8 for Title bars, Menu, Message Boxes, Icons, Tooltips
    I found this for the display scaling registry changes but it is for 125% and it uses 78 for the dword value, not sure about custom 123%.
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/882f17a6-7465-4aa6-8cea-27aa37a28a4d/gpo-to-set-default-windows-7-display-scaling-to-125?forum=winserverGP

    Hi lilyl,
    According to your description, you would like to deploy some settings about language and display via GPO.
    According to my knowledge, the steps you provided are from Windows 8 clients. Based on my test, you can use the following methods to realize:
    Add Traditional Chinese HK SAR. Locate the registry key HKEY_CURRENT_USER\Keyboard Layout\Preload, and then add a String Value "next number"(which has not been used)=00000404.
    The region settings. Please refer to the similar post:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/ec6a290e-fc09-4be6-9f6a-1f532d338606/change-regional-settings-locale-settings-and-keyboard-layout-using-group-policy?forum=winserverGP
    The display settings. The post you provided tells us the related registry keys, and you should try to find the right value since you want to custom it.
    In addtion, please refer to the following article to learn to deploy a registry item:
    http://technet.microsoft.com/en-us/library/cc753092.aspx
    Regards,
    Lany Zhang

  • Setting Default Dashboard for weblogic

    I have migrated from 11.1.1.5 to 11.1.1.6 I have copied & pasted catlog in EM.
    Issue is I am not able to set default dashboard page to weblogic i get error
    Exception occured when saving user preferences to catalog access denied for user  to path /users/weblogic/_prefs/userprefsxmlstore
    I have granted full control to weblogic. & I can set this page as home page for another user.
    How can I achive this for weblogic
    Thanks
    regards
    Sameer

    Hi All,
    You can check this topic on suppot.oracle.com
    https://support.oracle.com/epmos/faces/ui/km/SearchDocDisplay.jspx?id=1474923.1&type=DOCUMENT&displayIndex=1&returnToSrId=&srnum=&org.apache.myfaces.trinidadinternal.webapp.AdfacesFilterImpl.IS_RETURNING=true&_adf.ctrl-state=sixc8by79_9

  • Setting Default Outlook Signature By Group Policy

    Hi
    I am attempting to standardise our company's email signature for all users. A contact supplied me with a VBA script which generates a signature based on the user's AD information. This works great but I would like group policy to set this signature as default
    to prevent users from making changes. From various Google searches, it seems that the default signature can be set by GP, but I can't seem to make sense of any of the posts that I find. This may be because I am new to GP and don't understand the context. Any
    suggestions as to what would be the best way to approach this?
    Thanks
    Steve

    Hi Steve_Flynn,
    According to your description, you would like to set default Outlook signature using group policy. Right?
    Based on my knowledge, the signature file is located in the path %userprofile%\AppData\Roaming\Microsoft \Signatures on Windows Vista, Windows 7, or Windows 8. And then we need to configure the related registry key
    HKEY_CURRENT_USER\Software\Microsoft\Office\x.0\Common\MailSettings or
    HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\x.0\Common\MailSettings.For more information, please refer to the following article:
    How to deploy a default email signature in Outlook
    http://support.microsoft.com/kb/2691977/en-us
    We can deploy the signature file and configure the registry key via Group Policy to resolve the issue. For your information, please refer to the following article to learn more:
    Configure a File Item
    Configure a Registry Item
    What's more, please refer to the following article to learn how to realize it via a script:
    Setting Up Outlook E-Mail Signatures
    Regards,
    Lany Zhang

Maybe you are looking for

  • How to switch off 'Cell Info' in Lumia 925

    I recently bought Lumia 925. I am getting constsnt messages pertaining to 'Cell Info'. They keep on appearing once in every few seconds & pile up in a huge number. You can not make a call unless you acknowledge all of them, which takes huge time, alt

  • 5/21/2014 - Beta - Flash Player 14.0.0.111

    The latest Flash Player 14 builds are now available.  You can download Flash Player here: http://www.adobe.com/go/flashplayerbeta. New Features for Flash Player 14: PPAPI Content Debugger We're pleased to announce the immediate availability of the PP

  • Move tool not working correctly, will not move individual layers only only groups.

    Everytime I try to move a layer within  a group it moves the entire group OR if it is not in a group it moves every single layer. The only way this does not happen is if I use the transform tool to move. This stinks for work-flow. Im not sure if I ac

  • Audio output options

    Can't find any options for switching on audio in audio options through an output device and can't hear anything when connecting my Mac through Thunderbolt to my external TV. Audio devices only show an option for internal speakers. Video is fine throu

  • Supported file formats in Photoshop CS6

    This question was posted in response to the following article: http://helpx.adobe.com/content/help/en/photoshop/using/supported-file-formats-photoshop-cs 6