One accordion tab panel not working properly

Hi,
Can you spot where my error is here, in years 4-5?
http://www.grad.umn.edu/gradwriting/IWP/
The first accordion panel is open; all other accordion panels
are shut at start . What am I missing? Thanks!

Your code is this
<script type="text/javascript">
<!--
var TabbedPanels1 = new
Spry.Widget.TabbedPanels("TabbedPanels1");
var Accordion1 = new Spry.Widget.Accordion("Accordion1", {
useFixedPanelHeights: false, defaultPanel: -1 });
var Accordion2 = new Spry.Widget.Accordion("Accordion2", {
useFixedPanelHeights: false, defaultPanel: -1 });
var Accordion3 = new Spry.Widget.Accordion("Accordion3", {
useFixedPanelHeights: false, defaultPanel: -1 }, {
useFixedPanelHeights: false, defaultPanel: -1 });
var Accordion4 = new Spry.Widget.Accordion("Accordion4");
var Accordion5 = new Spry.Widget.Accordion("Accordion5", {
useFixedPanelHeights: false, defaultPanel: -1 });
//-->
</script>
but should be this
<script type="text/javascript">
<!--
var TabbedPanels1 = new
Spry.Widget.TabbedPanels("TabbedPanels1");
var Accordion1 = new Spry.Widget.Accordion("Accordion1", {
useFixedPanelHeights: false, defaultPanel: -1 });
var Accordion2 = new Spry.Widget.Accordion("Accordion2", {
useFixedPanelHeights: false, defaultPanel: -1 });
var Accordion3 = new Spry.Widget.Accordion("Accordion3", {
useFixedPanelHeights: false, defaultPanel: -1 });
var Accordion4 = new Spry.Widget.Accordion("Accordion4", {
useFixedPanelHeights: false, defaultPanel: -1 });
var Accordion5 = new Spry.Widget.Accordion("Accordion5", {
useFixedPanelHeights: false, defaultPanel: -1 });
//-->
</script>
Accordion3 and Accordion4 lines mixed up
Carl

Similar Messages

  • Anchor links to accordion panels not working properly across browsers

    Hi everyone,
    I need some help to figure out why my anchor links  to specific accordion panels on another page are not working properly  across browsers.
    I have a Map page which has tooltips on  mouseover on the site markers. 15 of the tooltips have "Click here for  information" anchor links (although only 14 are currently linked) which,  in theory, would take you to the Nurseries page where the specified  accordion panel would be opened with the nursery entry appearing at the  top of the new browser window.
    Here are the links to the Map page and Nurseries page, respectively:
    www.alegriadesignstudio.com/RFRI/map_v6.html
    www.alegriadesignstudio.com/RFRI/nurseries_v6.html
    I've  tested the anchor links on IE, Firefox, Google Chrome, and Safari, and  have received varying results. In most cases, the anchor links worked  perfectly on two of the browsers, while on the other browsers, the  correct accordion panel is opened but the nursery entry does not appear  at the top of the new browser window. Anchor links using Safari and  Google Chrome fared better (10 out of 14 links worked properly, and  8/14, respectively), whereas when using Firefox and IE, only 3 anchor  links worked properly. The target audience for this website will be  using IE and Firefox, so I  would appreciate any help to figure out how to tweak the code so that  the most, if not all, anchor links work properly on these two browsers  in particular.
    Here's an anchor link which worked perfectly in  IE, GC, and Safari, but in FF, the entry did not appear at the top of  the new browser window.
    www.alegriadesignstudio.com/RFRI/nurseries_v6.html?luzon=9#mangatarem
    http://www.alegriadesignstudio.com/RFRI/nurseries_v6.html?luzon=9#mangatarem [To access the anchor link on the Map page, mouseover the third green  dot from the top of the map (Tooltip--Location: Mangatarem) and then  click on "Click here for information."]
    Here's a sample anchor link in which the entry did not appear at the  top of the new browser window in any of the 4 browsers:
    www.alegriadesignstudio.com/RFRI/nurseries_v6.html?mindanao=4#magpetAmabel
    http://http://www.alegriadesignstudio.com/RFRI/nurseries_v6.html?mindanao=4#magpetAmabel [To access the anchor link on the Map page, go to "Mindanao" at the  bottom of the map and mouseover the fourth green  dot below the word "Mindanao" (Tooltip--LOCATION:        Brgys. Amabel, Bongolanon, Imamaling, & Manobisa; Magpet;        North Cotabato) and then  click on "Click here for information."]
    Here's a sample anchor  link in which the anchor link worked properly in GC and Safari, but the  entry didn't appear at the top of the browser window in IE and FF:
    www.alegriadesignstudio.com/RFRI/nurseries_v6.html?visayas=1#bilar
    http://http://www.alegriadesignstudio.com/RFRI/nurseries_v6.html?visayas=1#bilar [To access the anchor link on the Map page, go to the small island  north and a bit west of "Mindanao" which is called "Bohol" and mouseover  the fourth green  dot below the word "Mindanao" (Tooltip--LOCATION: Bilar; Bohol) and then   click on the first "Click here for information."]
    Many thanks in  advance for your assistance!
    Joy

    Hi everyone,
    I'm still trying to figure out how to resolve the problem of anchor links to accordion panels not working properly across browsers (see original post for details). I would greatly appreciate any suggestions on how to resolve the problem.
    Many thanks in advance.
    Joy

  • New tab is not working properly as before. if i click on new tab symbol(+),it is not opening.how to make it work?

    new tab is not working properly.ie.,i can not open new tabs in firefox.

    Uninstall the Ask toolbar and it should work again. There is a compatibility issue with the Ask toolbar and Firefox that prevents new tabs from being opened.

  • Multiple panels not working properly

    I've added an additional read less at the bottom of each tab panel on the page.
    http://summiticemelt.com/productstestmar4.php
    1. The page opens with the #2  & 3 tabs open, even though they are set to false.
    2. The read less function does not work properly with tabs 2 & 3.
    I'm new to Spry and .js and pieced this together based on what I could find in the forums.

    There are a few problems that I have noticed so far.
    Line #1 <!doctype html5> is not recognised, hence the page will revert back to HTML 4.01 Transitoinal. It should read <!doctype html>
    Line #51 (links to) style rules should be placed in the <head> element, not in the <body> element
    Lines #124, #159 and #188 all link to the same JS file. Delete two of them.
    Lines #126, #161 and #207 contain a constructor for the same widget. The former two should be deleted.
    Lines #190 and #208 contain a constructor for the same widget. The former should be deleted
    Although JS can be placed anywhere in a document, I tend to place all JS at the bottom, just above the ending body tag (</body>) unless the JS is required for rendering purposes in which case it should be placed where it is required. This way, you can keep check of what you have linked to and which constructors you have created thus eliminating the problems mentioned above.
    Also you might like to have a look at a collapsible panel group http://labs.adobe.com/technologies/spry/samples/collapsiblepanel/CollapsiblePanelGroupSamp le.html. This will simplify the code somewhat.
    Gramps

  • Tabbing is not working properly / Flex Mobile 4.6

    Hello,
    I've been working on a mobile app in Flex 4.6 and I've noticed that tabbing between fields is not working properly - maybe someone else has had the same experience and has a fix?
    I have 4 TextInput fields, which now all have tabEnabled set to "true" and tabIndex set accordingly, however, I am unable to tab netween the fields.
    More specifically, when I run the app with a destop run configuration, any time I hit the "TAB" button on the keyboard the first field is focused on. So, if the cursor is in field 3 & I hit TAB, the focus is now in field 1.
    On the mobile device (Samsung Galaxy S), there is no tabbing at all, no matter which field I am in. The soft keyboard does detect the last field though, and the "Next" button on the keyboard will change to "Done".
    I've tried putting the TextInput fields withing a SkinnableContainer (as mentioned here: http://forums.adobe.com/message/2418694#2418694), but no change.
    I also found a bug report on something similar, though it was closed becuase it was opened in the AIR bug base instead of the flex bug base. (https://bugbase.adobe.com/index.cfm?event=bug&id=3064944)
    Here's the code for my "registration" view without any functions or function calls.
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark"
                        title="Create Account">
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
              <s:Group left="10" right="10" top="10" bottom="10">
                        <s:layout>
                                  <s:VerticalLayout/>
                        </s:layout>
                        <s:TextInput id="email" prompt="Email" tabEnabled="true" tabIndex="1"/>
                        <s:TextInput id="un" prompt="Username" tabEnabled="true" tabIndex="2"/>
                        <s:TextInput id="pw" displayAsPassword="true" prompt="Password" tabEnabled="true" tabIndex="3"/>
                        <s:TextInput id="pwc" displayAsPassword="true" prompt="Confirm Password" tabEnabled="true" tabIndex="4"/>
                        <s:Button id="button" width="100%" label="Sign Up"/>
                        <s:Group width="100%">
                                  <s:layout>
                                            <s:VerticalLayout horizontalAlign="center"/>
                                  </s:layout>
                                  <s:BusyIndicator id="bi_reg" visible="false"/>
                                  <s:Label id="msg_reg" width="100%" text="Label" textAlign="center" visible="false"/>
                        </s:Group>
              </s:Group>
    </s:View>

    Thanks for the response. I am using spark TextInput components as you can see in the code above. I've used these conrtols in other apps in FB 4.5 and have had no problems so it seems like something may be different in 4.6, or it's a bug.

  • "Link to One of  My Pages" not working properly in iWeb '08

    This week I encountered a new problem doing something I've done successfully many times in the past.
    *_Here is the basic info:_*
    I created a site that had a main page and then four subsequent pages (5 in total). I created a text box (seen bellow) that listed each page.
    I then used the "Link to One of My Pages" option to link each word to the corresponding page.
    I then cut and past the text box on each page so that the links would be present on each page.
    Then in iWeb I checked all the links on each page to make certain they navigated properly to the correct page. Everything checked out fine all the links worked properly.
    Next I saved and exported to a folder to check the site before going live.
    *_Now here's my problem_*
    I launched safari and opened the site locally — I then discovered that only the first 2 of 5 links worked — the remaining three did not register as links.
    I launched FireFox same problem. went back to safari emptied the cache, did not help.
    Finally, I went back to iWeb and repeated the process several times. I've rechecked, and recreated the links and exported to a folded multiple times with no change — still only the first 2 of 5 links work.
    Has anyone encountered the same problem? I would greatly appreciate any suggestions or remedies
    Thanks you
    Message was edited by: NYCguy-71

    Well I discovered the the solution to my own post above — For those keeping a score card I'll just chalk this one up to operator error and not to iWeb troubles.
    The basic problem was that only two of five hyperlinks in a text box worked when my site was published.(please refer to my original post above for more details)
    *_here is the fix:_*
    I was working with the layout view hidden.
    When i turned "show layout" on, I discovered that the lower margin and footer were bisecting the text box containing the hyperlinks. (seen bellow) As a result, while visable when published, the top two links worked fine and the bottom three links didn't.
    When I adjusted the lower margin and footer to fit the text box and published the site everything worked properly.
    So I guess the lesson learned is to check the layout — Even though I had content that was outside of the page parameters it was still visible on the published site just not functional.
    I share this in the hope that my time and effort spent figuring this out might help someone else avoid the same frustration.

  • Opening specific Spry tabbed panels not working or displaying in IE

    I have a tabbed panel spry widget on an asp page in Dreawmweaver (http://www.herbsmithinc.com/casedog.asp) that worked marverously across IE, Firefox and Safari until I tried to get different panels to open on load through links.  I used the following tutorial: http://foundationphp.com/tutorials/spry_url_utils.php
    Everything works as it should in Firefox and Safari but the panels all appear at once, stacked down the page in IE. Does anyone have a fix for this or see what it is I'm doing wrong?
    Thanks!!

    I added the code, but It didn't work
    I just noticed that there's an error on the page when it loads in IE:
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)
    Timestamp: Thu, 24 Mar 2011 15:05:33 UTC
    Message: 'Spry.Widget.TabbedPanels' is null or not an object
    Line: 292
    Char: 1
    Code: 0
    URI: http://www.herbsmithinc.com/casedog.asp
    I searched the error but didn't come up with too much.  Any other suggestions?  I really appreciate the help!!

  • Accordion - default panel not working

    Hi, I'm using this script so the second panel is open by default, but it's not working (all the panels appear close by default)
    <script type="text/javascript">
    <!--
    var Accordion1 = new Spry.Widget.Accordion("Accordion1", { useFixedPanelHeights: false, defaultPanel: 1 });
    //-->
    </script>
    I can't figure out what's wrong.
    Here's the live page: http://www.apokrisis.com/client-projects/npfmc2010/public-meetings/committees-related-meet ings.html
    Thanks for your help!
    MWhitt

    Your code is this
    <script type="text/javascript">
    <!--
    var TabbedPanels1 = new
    Spry.Widget.TabbedPanels("TabbedPanels1");
    var Accordion1 = new Spry.Widget.Accordion("Accordion1", {
    useFixedPanelHeights: false, defaultPanel: -1 });
    var Accordion2 = new Spry.Widget.Accordion("Accordion2", {
    useFixedPanelHeights: false, defaultPanel: -1 });
    var Accordion3 = new Spry.Widget.Accordion("Accordion3", {
    useFixedPanelHeights: false, defaultPanel: -1 }, {
    useFixedPanelHeights: false, defaultPanel: -1 });
    var Accordion4 = new Spry.Widget.Accordion("Accordion4");
    var Accordion5 = new Spry.Widget.Accordion("Accordion5", {
    useFixedPanelHeights: false, defaultPanel: -1 });
    //-->
    </script>
    but should be this
    <script type="text/javascript">
    <!--
    var TabbedPanels1 = new
    Spry.Widget.TabbedPanels("TabbedPanels1");
    var Accordion1 = new Spry.Widget.Accordion("Accordion1", {
    useFixedPanelHeights: false, defaultPanel: -1 });
    var Accordion2 = new Spry.Widget.Accordion("Accordion2", {
    useFixedPanelHeights: false, defaultPanel: -1 });
    var Accordion3 = new Spry.Widget.Accordion("Accordion3", {
    useFixedPanelHeights: false, defaultPanel: -1 });
    var Accordion4 = new Spry.Widget.Accordion("Accordion4", {
    useFixedPanelHeights: false, defaultPanel: -1 });
    var Accordion5 = new Spry.Widget.Accordion("Accordion5", {
    useFixedPanelHeights: false, defaultPanel: -1 });
    //-->
    </script>
    Accordion3 and Accordion4 lines mixed up
    Carl

  • Search panel not working properly for mysql

    JDev 11.1.1.3, MySql 5.1, Windows 7 x64
    When you place a search panel with a table using view criteria on a page the search does not function properly.
    The search criteria is developed as shown in the VO:
    ( (UPPER(Patients.card_number) LIKE UPPER( :pCard || '%') ) OR (UPPER(Patients.full_name) LIKE UPPER( :pName || '%') ) )
    When you press the search button with a blank form - all records are returned correctly
    if you put any data in the search form - it only returns the first record in the table (not related to the criteria).
    if you enter a letter in the name field - it returns no records found.
    Is there a workaround for this? or has someone patched this already?
    Is there a place that you can configure the way the query is built based on the database type?
    also if you use the history columns - you get errors saying sysdate is not valid in the query.
    I noticed the same issue that has already been raised by others (the search criteria does not show in the panel) but this is merely an inconvenience as it shows when it is run).

    Suganth - Umm... there are reasons why this value isn't editable in the design time once you have set it. Ever think about why JDeveloper makes the value read-only? There's also a type map that is non-changeable in the UI; can we hack that too? Unless you know the consequences of changing this (and explain them in your "solution"), you are being irresponsible in posting such a suggestion. If there are no consequences, explain that too, and tell us why the UI prevents you from making this change.
    rogerappl - Hack the jpx file at your own risk. There's a very old [url http://www.oracle.com/technology/products/jdev/howtos/10g/MySql/MySQL_and_BC_HowTo.html]article on using ADF Business Components with MySQL that talks about the correct settings for these.
    John
    Edit.. Roger I see that you've updated the thread - when you created your business components, did you specify SQL92 flavor originally? What type map did you use?
    JOhn

  • Save and Quit tabs does not work properly.

    When asked to Save and Quit tabs for the specific session is selected, Firefox does not restore tabs at the next session.
    I have read the posts where it is suggested to change the settings and simply never clear the history. However this is not the way that Firefox behaved in older versions, NOR IS IT A SOLUTION due to the following:
    The pop-up on exit to Save and Clear is clearly asking the user if that specific session should be remembered and then clearing the history should be superseded by saving instead. Otherwise, what is the point of asking the user to save? A pop-up warning saying that the tabs will not be remembered would be more appropriate.
    Regardless, the user has been asked if this specific session should be remembered, and this clearly being the last choice done by the user, supersedes the prior settings for this one specific session. The tabs should be remembered, as the user has instructed (and Firefox used to do in the past), and yet Firefox opens a new session having dumped the information.
    Changing the settings to remembering the history instead, does not serve people that want most times to clear it. This would then mandate a manual clearing of history every time before a session is ended instead.
    This will need a permanent fix/rollback to the way Firefox used to behaved in these circumstances in older versions.

    After transferring musics to the device selecting by mass storage mode you need to follow this
    Go to Device Menu> Music> Music Player> Option> refresh library
    have you followed this? if this does not help could you please provide more information sothat someone can help you to solve your problem?
    A. Device details ( type *#0000#)
    B. System Information details ( Help About- Ovi Suite- System Information : Copy & paste )
    Please THANK me by clicking on the ****WHITE STAR** ( Giving KUDOS) the big GREEN BOX to your LEFT .
    It will help me to serve you better !!!!!
    Thanking You

  • Simultaneously Controlling LabVIEW Remote Front Panels not working properly

    We are trying to simultaneously control a Executable file from different PC as per the description given in link below:
    http://www.ni.com/white-paper/4867/en
    But the issue is that we are not able to view it in Web browser as in "Web Publishing tool" When we click on "Preview in Browser" it Pop up a message " Web server not started. Do you want to start it now? We Click YES. Still nothing happens.
    We have exactly followed the steps given in the "white-paper/4867/en  i.e. Selected "Enable web server" and VI Properties to "Reentrant execution".
    In Control Panel>>Administrative  Tools>> Services we found that NI Web Server is available but NI Application Server is not installed. Is this is the reason why we are not able to Preview in Browser. If yes how to install that OR any thing else we are missing?
    Thanks
    R.B.Chavan

    Mateus23 wrote:
    I'm now developing the web version in HTML 5, using web services to comunicate with my labview application.
    There you go, good solution. When doing this remember that you have access to the database on the server. A structure I have found effective is to use the server DB like a dropbox that I write to, and the web server reads from.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Gradient panel not working properly

    Image is selected but gradient panel does not show colors of image.  Gradient controls cannot be adjusted even on existing gradients.
    All color settings are at zero .   Changing setting  to a value has no effect.  This happened suddenly.  I had previously been using gradients without problems.  

    Am 20.11.2012 um 18:41 schrieb Xoph:
    My Gradient Tool no longer shows the Gradient Tool Annotator over a selected object. Did I turn something off that I don't know about? Recently updated my CS5 version to try and fix but no luck. Thanks!
    Is the object part of a live paint group?
    Then it would be normal.
    Otherwise try the view menu: Show gradient annotator

  • Spry tab panel not working in IE

    I have a site that uses tabs-------it is ok in firefox but not in IE
    The site url is grillonthehill.net
    Please help.
    I have a site that uses tabs-------it is ok in firefox but not in IE
    The site url is grillonthehill.net
    Please help.
    I have a site that uses tabs-------it is ok in firefox but not in IE
    The site url is grillonthehill.net
    Please help.

    No I didnt, if you  click on menu, you see the tabs.
    bill
    <

  • Accordion panel not working correctly in IE6

    Hi,
    I created a page with an accordion panel set that worked fine
    in FireFox. The panels start closed and then open when clicked
    upon.
    This works fine in IE 7 but when I open this page in IE6, the
    panel tabs do not function properly. The top five do not have the
    background color or any delineating lines - there is just the text
    of the panel tab. When the tabs are clicked on, they will open but
    the colors change oddly. Sometimes there is a small horizontal
    section of no color at the bottom of the panel tab color. When the
    cursor is moved around the page, the tabs can change
    colors....sometimes. Other times a tab will lose color completely.
    And yet, it works perfectly in Firefox. What could be causing
    this problem. I was so happy that I had finally completed this page
    since there was a lot of dynamic data to link to the page - and now
    I feel like I am back at square one.
    Please help!
    Thanks

    I atually figured it out - well I got it to work right but
    I'm still not sure why it works. I had the accordion panel in a div
    wrapper. The positioning was set to "relative". When I commented
    out that line, it worked fine in IE6! I'm not sure why - but I'm
    glad it did!

  • I have lost track of the number of websites that do not work properly on the iPad without Adobe Flash player which is unsupported. I cannot use retail sites, billing sites and most important of all job application sites. All are missing tabs, links, info

    I have lost track of the number of websites which do not work properly on my iPad. They include retail sites, billing sites and most important of all job application sites. They all seem to require Adobe Flash Player which cannot be downloaded onto an iPad. Skyfire does not solve the problem. They all load without vital parts of the site such as tabs, links and correct formatting. Any suggestions?

    Most such brower/service combinations have a difficult time working with Flash-based apps and often fail completely. Flash videos are usually the most successful content these browers can handle. You can try the others apps - Puffin, iSwifter, etc - but you may find that none of them work, in which case you will not be able to use your iPad with these sites other than by using one of the various remote control solutions to take over a computer running the full Flash Player.
    IMHO, any developer that built a Flash application for a billing or job application site was an idiot, but I know that's out of the control of anyone but the relevant company.
    Regards.

Maybe you are looking for

  • Error while Creating External definition with WSDL file

    Hi ALL, I need to create a External defination with a WSDL file in PI 7.1.so i selected the Option WSDL & From all available message defination while creating External defination  & imported the WSDL file. I am getting an error javax.ejb.EJBException

  • SWF not loading on new page

    Hi there I have managed to insert swf files in my homepage before and those still work but a new page I have created with a new swf file is not working for me. I have read a few posts on this sort of issue on here and tried the fixes there but I am s

  • Manual Check Numbers in Data Migrations

    Hi Experts, I have to migrate Outgoing Bank payments VIA Check. But all these Checks are manual and have manual check numbers. From frontend there is a checkbox in payments means window under check tab (Manual) which allows us to enter the manual che

  • Disable search Query Logging by powershell

    Hello, Could anyone advise how to disable Query Logging for sharepoint 2010 search service application by powershell? I found only option to check status ($searchapp.QueryLoggingEnabled) but I can not find any way to disable query logging. Thanks in

  • Exporting the report as flat file using the layout defined

    Hi all,   I am creating a report program using REUSE_ALV_LIST_DISPLAY with flat file extraction using WS_DOWNLOAD. In the selection-screen, a checkbox which indicates that the report must be exported as flat and a parameter for the layout exist. The