Accordion Bug

I have an application where the base state is a login page,
on successful login it takes you to a state called 'home'. I have
an accordion in a panel in the home state and it doesn't work. Is
this a known issue or am I missing something?
Getting the following error:
TypeError: Error #1009: Cannot access a property or method of
a null object reference.
at mx.managers::HistoryManager$/save()
at mx.containers::Accordion/::commitSelectedIndex()
at
mx.containers::Accordion/mx.containers:Accordion::commitProperties()
at mx.core::UIComponent/validateProperties()
at mx.managers::LayoutManager/::validateProperties()
at mx.managers::LayoutManager/::doPhasedInstantiation()
at mx.core::UIComponent/::callLaterDispatcher2()
at mx.core::UIComponent/::callLaterDispatcher()
Created a simple app to show this error:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml"
layout="absolute">
<mx:states>
<mx:State name="home">
<mx:RemoveChild target="{hbox1}"/>
<mx:AddChild position="lastChild">
<mx:HBox x="0" y="0" width="100%" height="100%">
<mx:Panel width="250" height="100%" layout="absolute">
<mx:Accordion x="0" y="0" width="100%" height="100%">
<mx:VBox label="test1" width="100%" height="100%">
</mx:VBox>
<mx:VBox label="test2" width="100%" height="100%">
</mx:VBox>
</mx:Accordion>
</mx:Panel>
<mx:Panel width="100%" height="100%"
layout="absolute">
</mx:Panel>
</mx:HBox>
</mx:AddChild>
</mx:State>
</mx:states>
<mx:HBox x="0" y="0" width="100%" height="100%"
id="hbox1">
<mx:Button label="Button"
click="currentState='home';"/>
</mx:HBox>
</mx:Application>

Did you ever get this working? If you remove the surrounding
containers from the accordian, it does work, so it is not related
to different states. I am having the same problem, so if you find a
solution will you post a reply here for all to see? I will do the
same.
Here is your sample app working:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml"
layout="absolute">
<mx:states>
<mx:State name="home">
<mx:RemoveChild target="{hbox1}"/>
<mx:AddChild position="lastChild">
<mx:Accordion x="0" y="0" width="100%" height="100%">
<mx:VBox label="test1" width="100%" height="100%">
</mx:VBox>
<mx:VBox label="test2" width="100%" height="100%">
</mx:VBox>
</mx:Accordion>
</mx:AddChild>
</mx:State>
</mx:states>
<mx:HBox x="0" y="0" width="100%" height="100%"
id="hbox1">
<mx:Button label="Button"
click="currentState='home';"/>
</mx:HBox>
</mx:Application>

Similar Messages

  • Potential Accordion Bug

    I have an accordion control in my flex app and I am
    experiencing problems with a checkbox in one of the accordion
    items.
    I have written some actionscript to dynamically add items to
    the accordion control. I forget the terminology, but I have a
    'template' document which specifies the contents of each item in
    the accordion. Each item has a label control and a checkbox
    control. When I check a checkbox in one of the accordion items and
    scroll down so the item is not in view, then scroll back up to the
    item, the checkbox is displayed as unchecked! Has anyone come
    across this behaviour before?
    Thanks,
    Alan

    Post an example.
    Tracy

  • A possible bug in the Accordion scripts

    I've encountered what may be a bug in the handling a single
    apostrophe in the tab of an accordion panel. When I use &apos;
    in the tagged element content displayed in the accordion tab, the
    character appears in the tab but any processing of the panels
    stops. When I remove the &apos; everything is fine. When I swap
    &apos; for &quot; (or any other special character) this
    also works. So I'm thinking the single quote is affecting the
    javascript somewhere along the line.
    I'm using the 1.4 release of Spry.
    BTW, all special characters in the panel content work just
    fine. It seems to be only the tab that is affected when the content
    there contains this single quote mark special character.
    Unless I'm totally out to lunch or this is one of those magic
    things that self-corrects the minute you ask someone a question
    about it (I hate when that happens).
    Thanks for any help you can give me.

    Hi solsenkp,
    I'm not seeing the problem. Can you post some sample markup?
    --== Kin ==--

  • Accordion Display Bug

    When I use Accordion widget and fill the Labels with background images(Tile Horizontally), I find the bug and got a tip as workaround.
    Here the bug is:
    (please see the picture in original size)
    Here the tip is:
    (please see the picture in original size)
    There is a little difference between Figure 1 and Figure 2.
    And it seems that it happened after setting the image to the labels.
    If you add a Accordion widget as a new object, it works well.

    Bertine,
    I had a look at the link you sent.
    The Accordian panel seems to be working fine. I understand the concern that user has to scroll up and down due to the larger amount of content few tabs as compared to others. I would have suggested you using the anchors inside the Accordian panel containers but I guess it might not be very useful in your case. The issue might still persist.
    In this scenario I would suggest you to use "Tabbed Panel" (if possible) instead of Accordian. As in tabbed panel User will not have to scroll up and down to select the options. But you might have to reduce the length of the headings of the tabs to have them fit on the page.
    Hope this helps.
    Regards,
    Sachin

  • Setting Tooltip on accordion section Does not work. Possible bug??

    HI All,
    I am using accordion control with following code.
    var oAccordion = new sap.ui.commons.Accordion("accordionA");
    //Building Section 1
    var oSection1 = new sap.ui.commons.AccordionSection( "section1" );
      oSection1.setTitle("Section 1kdfjkdasfjsdafffdfjkakfajfajfksafjdkfjdf");
    oSection1.setTooltip("Section 1");
      oSection1.setMaxHeight("100px");
      for (var i=0 ; i < 5 ; i++){  
    var oCheckBox1 = new sap.ui.commons.CheckBox( "CheckBox1"+i );
      oCheckBox1.setText("CheckBox1 "+i);
      oSection1.addContent( oCheckBox1);
    var oLabel1 = new sap.ui.commons.Label( "Label1"+i );
      oLabel1.setText("Label 1 "+i); 
      oSection1.addContent( oLabel1);
      oAccordion.addSection( oSection1 );
    Though I am setting the Tooltip. While mouse hover I don't see the tooltip.
    My thought is whenever sectionsTitle is truncated it should show the tooltip.
    Please clarify when the tooltip will be visibile.
    thank you for allyour inputs and help in advance.
    regards

    Hi there,
    It is a bug. You may use the title for each section until they get the tooltips to work.
    Regards,
    Alejandro.

  • Accordion widget Bug: Accordion deactivates all hyperlinks below widget when opened

    A placed accordion widget in a master page with foreground order deactivates all hyperlinks under the accordion widget.

    This seems to happen when you enable the Can Close All / Overlap Items below options while the Accordion is placed on Master Foreground and the link is right below it on a content page (but within the Accordions span). The workaround would be to either move the Accordion to Master Background or move the link under the Accordion to be outside its span (when opened) or disable the Overlap Items below option.
    Thanks,
    Vinayak

  • 'Accordion' Effect or Bug When Using Facebook

    Hi. I haven't tested it on Chrome or Firefox long enough but there are times when I'm on Facebook using Safari, when I use the default scroll (using the Magic Mouse under Lion 10.7.2), the top and bottom becomes garbled. It looks like at accordion. Here is a screenshot:
    http://i57.photobucket.com/albums/g230/alvin777/garbledFacebookCopyEdited.jpg
    Thanks in advance.
    Gbu.

    Mac OS X (10.7.1)  < your profile
    If that is correct, go to the Apple menu > Software Update. The v10.7.2 update is available and may help.
    Empty the Safari cache and reset Safari from the menu bar.

  • All time Bug! Accordion widget does not retain content position as in design view

    I have noticed that content placed inside an accordion widget that is stretched to fill browser width do not retain the position of its elements. This is very annoying as ones layout does not look right and balanced across screen.

    That was it KathH --- THANKS!!!
    Had created the row w/out <td> cells to carry the top banner (sort of cheating) on spanning the cells i guess ( )
    Anyway, re-wrote so that the banner table was independant and did not require span and picked up the data table independantly.
    Problem solved and designer picked up the image precisely.
    Thanks again!!!
    Curious though that the image is dependant on the <td> tag.  I would have expected any image called within the page to display in the designer regardless of location in the html.
    Oh well, fixed and onto the next challenge.
    Once more THANKS!!!

  • Opera 9.5 and Accordion - Major bug

    Yeah, sadly, something has gone wrong with either Opera9.5 or
    it was something that was never covered in the Spry Accordion.
    What happens is that when you "focus" onto the accordion,
    everything gets highlighted and a very ugly 3px border appears
    around the accordion, whilst highlighting all the text inside the
    accordion.
    Not the most pleasant of sights. :(
    Anybody got a quick fix to stop the automatic
    highlighting?

    "V1 Fusion" <[email protected]> wrote in message
    news:g3sk9k$jf7$[email protected]..
    >
    quote:
    Originally posted by:
    Newsgroup User
    > You're very welcome.
    >
    > --
    > Al Sparber - PVII
    >
    http://www.projectseven.com
    > Fully Automated Menu Systems | Galleries | Widgets
    >
    http://www.projectseven.com/go/Elevators
    >
    >
    > "dtaboada" <[email protected]> wrote in
    message
    > news:g3rqen$npm$[email protected]..
    > > You, my friend, are completely correct. It was the
    revenge of the tab
    > > index....
    > >
    > > See, I was working with a PHP framework, so each
    div holding the certain
    > > accordion classes were miles away from each other,
    and I never bothered
    > > to
    > > look
    > > at the tab index because I forgot about it.
    > >
    > > Well, that clarified a lot; thanks a bunch. :)
    > >
    >
    >
    sounds more like a css outline issue tbh. that
    could be fixed by
    > adding
    > outline:none;..
    Absolutely not. Of course, if you want to try it yourself,
    post an example
    page.
    On a well-coded page, the outline property should never need
    to be tampered
    with. Tab index is mis-used by Adobe here. Hopefully it is a
    temporary
    solution to an issue that will be addressed in future
    versions of their spry
    codebase.
    Al Sparber - PVII
    http://www.projectseven.com
    Fully Automated Menu Systems | Galleries | Widgets
    http://www.projectseven.com/go/Elevators

  • Spry Bug? Background Colors/Images not showing in IE6/XpP

    I'm trying to wrap up my site for MiniMAX SE7EN (Cheap plug,
    it's on 6/26 in DC) and I've got a Spry Accordion Component I used
    in Dreamweaver CS3 to display all the speakers and then I switched
    the CSS file to allow for different colors and a background image
    to show through. Seems fine in Firefox and IE7 but in IE6 for PC's,
    it appears black and only black. Is this a Spry bug or something I
    screwed up with regarding the CSS?
    http://www.minimaxconference.com/

    I am having the same problems in IE7. I'm using the latest
    version of everything (Spry 1.6.1 and javascript file version 0.12)
    and at first I was having the problem on my drop down menus
    appearing horizontal with all the correct styles but when I changed
    the rule ul.MenuBarHorizontal ul to position: relative; the drop
    downs appear vertical now but I have no beige border around the
    whole ul anymore and I'm getting white space inbetween list items.
    http://www.wusf.usf.edu/Header_Nav_Footer_newStyleSheet.cfm
    so if anyone has any advice I'd much appreciate it. Also i'm
    using 1px width on my borders no decimals.

  • Accordion not showing up at all in IE6

    I have a standard accordion set up at
    www.taradeal.com/pow.html
    and it works fine in Safari and Firefox, but does not show up at
    all in IE6 (the initial load of the text bits flashes up, but the
    Spry re-work of the code seem to fail). I'm using Spry 1.6.1,
    freshly updated for DW CS3.
    The accordion display a standard RSS XML.
    Here's some code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN">
    <html>
    <head>
    <meta content="text/html; charset=iso-8859-1"
    http-equiv="Content-Type">
    <link rel="alternate" type="application/rss+xml"
    title="RSS" href="pow-rss.xml">
    <script src="SpryAssets-xpath.js"
    type="text/javascript"></script>
    <script src="SpryAssets-SpryData.js"
    type="text/javascript"></script>
    <script src="SpryAssets-SpryAccordion.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    var powrss = new Spry.Data.XMLDataSet("pow-rss.xml",
    "rss/channel/item",{sortOnLoad:"pubDate",sortOrderOnLoad:"descending"});
    powrss.setColumnType("pubDate", "date");
    powrss.setColumnType("description", "html");
    //-->
    </script>
    <link href="SpryAssets-SpryAccordion.css" rel="stylesheet"
    type="text/css">
    </head>
    <body>
    ... some table code
    <div id="poems" spry:region="powrss" align="left">
    <div id="Accordion1" class="Accordion" tabindex="0" >
    <div class="AccordionPanel" spry:repeat="powrss">
    <div class="AccordionPanelTab">{title}</div>
    <div
    class="AccordionPanelContent">{description}</div>
    </div>
    </div>
    <script type="text/javascript">
    <!--
    var Accordion1 = new Spry.Widget.Accordion("Accordion1", {
    useFixedPanelHeights: false });
    //-->
    </script>
    </div>
    ...some more simple display, and a Google tracker
    </body>
    </html>
    Thanks for any pointers on what's wrong.
    -dan

    Well, it seems to be a bug in the handling of the XML file
    contents. I fixed it by changing the code in SpryData.js to force a
    "manual" parse of the XML code. Not a good solution, but I don't
    know the codebase well enough to find the root of the problem. I
    know that the firstChild.nodeValue is "Object required" but I can't
    figure out who sets that and why. Maybe no ActiveX object?
    http://www.taradeal.com/pow2.html
    still broken in IE6 if you want to check it
    http://www.taradeal.com/pow.html
    uses changed code and dynamic-data accordion works
    Spry.Data.XMLDataSet.prototype.xhRequestProcessor =
    function(xhRequest)
    // XMLDataSet uses the responseXML from the xhRequest
    var resp = xhRequest.responseXML;
    var manualParseRequired = true; /*** DC for IE6 **/

  • My Spry Accordion will not work In IE but will in Opera

    Hi Everyone,
    I'm having a problem with my accordion spry widget in a website that I'm working on. Bear in mind theres's a lot of things to fix but it's in the initial stages. What happens is, if you go under the heading, business and then training you will see an FAQ section. You'll notice that the tabs are all open and it's just not functioning correctly in IE, Chrome and Firefos but it is working in Chrome. (I Haven't tried in Safari as my computer freezes ??) I've included the link and code below.
    Thanks
    Steve
    www.adelxt.net
    code:
    <meta name="keywords" content="computer,consulting, consulatant, windows, 2003, 2000, 2008, XP, Vista, Sonicwall, Novell, Netware, Virus, New Hampshire, Massachusetts, northern, wireless, wiring, southern, firewall " />
    <meta name="description" content="A local consulting firm specializing in Windows Server and Novell Netware as well as firewalls. This company troubleshoots and installs networks, wiredd and wireless and will maintain your network." />
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <style type="text/css">
    <!--
    .twoColElsLtHdr #container #mainContent p {
    .style2 {
    color: #FFFFFF;
    height: 30px;
    -->
    </style>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    a:link {
    text-decoration: none;
    a:visited {
    text-decoration: none;
    a:active {
    text-decoration: none;
    body {
    background-image: url(graphics/a1.gif);
    background-repeat: repeat-x;
    background-color: #f9f9f7;
    #apDiv1 {
    position:absolute;
    left:538px;
    top:131px;
    width:185px;
    height:444px;
    z-index:1;
    body,td,th {
    color: #000000;
    font-family: Geneva, Arial, Helvetica, sans-serif;
    font-size: 12px;
    .style4 {
    font-size: 18px
    .style5 {
    color: #FF0000;
    font-weight: bold;
    -->
    </style>
    <script src="SpryAssets/SpryAccordion.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryAccordion.css" rel="stylesheet" type="text/css" />
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Welcome to Adel-Xt Computer Company</title>
    <link href="css files/main.css" rel="stylesheet" type="text/css" />
    <!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .twoColElsLtHdr #sidebar1 { padding-top: 30px; }
    .twoColElsLtHdr #mainContent { zoom: 1; padding-top: 15px; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]-->
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', 'UA-18563317-1']);
      _gaq.push(['_trackPageview']);
      (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    </script>
    </head>
    <body class="twoColElsLtHdr">
    <div id="container">
      <div id="header">
        <table width="100%" border="0" align="center">
          <tr>
            <th bgcolor="#FF6633" scope="col"><div align="left">
              <p align="center" class="style2 style4">Adel-Xt Computer Company</p>
              <p align="center" class="style2 style4">Derry, NH 03038</p>
              <p align="center" class="style2 style4">1-603-434-5311</p>
            </div></th>
            <th scope="col"><h1>
              <div align="center">Home Training for the Individual</div>
            </h1></th>
          </tr>
        </table>
      <!-- end #header --></div>
      <!--Beginning of Horizontal menu Bar-->
      <div id="horizontalmenu"> 
      <!--#include file="SSI files/Horizontalmenubar.ssi" -->
      </div>
      <!--End of Horizontal Menu Bar-->    
    <!--Beginning of sidebar right-->
      <div id="sidebarright">
    <h2 align="center">Training FAQ</h2>
    <div id="Accordion1" class="Accordion" tabindex="0">
       <div class="AccordionPanel">
         <div class="AccordionPanelTab">Has Steve ever taught in school?</div>
         <div class="AccordionPanelContent">Yes. Steve has taught many computer, math and Engineering vlasses in local colleges.</div>
       </div>
       <div class="AccordionPanel">
         <div class="AccordionPanelTab">What is Steve's background?</div>
         <div class="AccordionPanelContent">
           <p>Steve has a BSME in Mechanical Engineering, Masters in Business Administration (MBA), advanced concentration in decision support systems (DSS)and certification in Microsoft.</p>
           <p>Steve also has 18 years working in industry in the field of Information Technology (IT), Engineering (Software &amp; Mechanical) , Manufacturing Engineering, Management , Quality, Manufacturing and much more...</p>
         </div>
       </div>
       <div class="AccordionPanel">
         <div class="AccordionPanelTab">What is the maximum that I can have in a clasroom.</div>
         <div class="AccordionPanelContent">This is up to you. Steve will discuss this with you and point out the pros and cons of having too many students in one session.</div>
       </div>
       <div class="AccordionPanel">
         <div class="AccordionPanelTab">Will Steve do evening training?</div>
         <div class="AccordionPanelContent">On special occasions he will. Normally evening training is done with some notice for Steve.</div>
       </div>
       <div class="AccordionPanel">
         <div class="AccordionPanelTab">Does Steve have a set program</div>
         <div class="AccordionPanelContent">No. This is exactly what he doesn't want. Steve wants to customize the training toward your business. An important part of training is the planning which is what he will be discussing with you.</div>
       </div>
    </div>
    <p> </p>
    <p> </p>
      </div>
    <div id="mainContent">
          <h2>Training</h2>
          <div>Adel-Xt Computer will help create a training program for you and your employees. We will gear 
            the training program to your business so employees taking this class will become more efficient in their everyday work skills. Once 
            a program is approved we will send our instructor (Steve) to your facilty to teach the class. </div>
          <div> </div>
          <div>    Please call 434-5311 
            or <a href="mailto:[email protected]" target="_self">contact us</a> for further discussion on how Adel-Xt Computer can help your business become more efficient thus leading to larger profits.</div>
          <p><br />
          </p>
        <p>
          <!-- end #mainContent -->
        </p>
      </div>
    <p>
      <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats -->
      </p>
      <div id = "subcontent2" align="center">
      <h2> Her are few Examples of Training</h2>
      <p class="style4">Beginner training for people new to computers.</p>
      <p class="style4"> Excel 2003, 2007, 2010</p>
      <p class="style4"> Word 2003, 2007, 2010</p>
      <p class="style4">Email usage and cautions</p>
      <p class="style4">More....</p>
      <p> </p>
      </div>
    </div>
    <p><br class="clearfloat" />
    </p>
    <div id="footer">
          <table width="100%" border=" 0">
          <tr>
            <th scope="col"><p class="style5">Presently we are redesigning our Website. If a link isn't  working please contact us via <a href="mailto:[email protected]">email</a> or call us at 603.434.5311.</p>
            <p>Adel-Xt Computer Company Derry, NH 03038 1-603-434-5311 Contact Us</p>
            <p>Last Updated:
              <!-- #BeginDate format:fcAm1a -->Friday, November 5, 2010 5:29 PM<!-- #EndDate -->
            </p></th>
          </tr>
        </table>
        <a href="http://www.tinycounter.com" target="_blank" title="web counter"><img border="0" alt="web counter" src="http://mycounter.tinycounter.com/index.php?user=adelxt"></a>
      <!-- end #footer --></div>
    <!-- end #container --></div>
    <script type="text/javascript">
    <!--
    var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    var Accordion1 = new Spry.Widget.Accordion("Accordion1");
    //-->
    </script>
    </html>
    </body>

    You not are using the latest Spry files
    The latest  version of the Adobe Spry Framework is 1.6.1, this is the same version  that ships with Dreamweaver CS4. If you use Dreamweaver CS3 (uses Spry  1.4), its wise to upgrade your files to the latest version. This can  easily be done using the Spry Updater that can be found here.
    If you replace
    <script src="http://www.adelxt.net/SpryAssets/SpryAccordion.js" type="text/javascript">
    with
    <script src="http://labs.adobe.com/technologies/spry/widgets/accordion/SpryAccordion.js" type="text/javascript"></script>
    you will notice that it works as it should.

  • Is there a way to autoscroll the current accordion content to top of browser window?

    So this is a topic I have seen brought up but never solved….
    I have an accordion on my site which displays content larger than the browser window, so when you scroll down to the bottom of the content box and get to the next accordion topic and click on it stays in the same place in the broswer window however since the prior accordion content closes it leaves you scrolled half way down on the current content.
    So is there a way to bind an action where it autoscrolls and brings the browser to the top of the clicked accordion content?
    here you see the window scrolled to the bottom of the first accordion content and the second showing its hover state…. when you click on the "So i made.." content it leaves you with this...
    the middle of the second accordion content, causing you to have to scroll up to the top of it to continue reading….
    I found this jquery scrpit which supposedly would do it.  However since Muse exports is scripts differently it doesnt apply.
    $('.ui-accordion').bind('accordionchange', function(event, ui) {
                ui.newHeader // jQuery object, activated header
                ui.oldHeader // jQuery object, previous header
                ui.newContent // jQuery object, activated content
                ui.oldContent // jQuery object, previous content
                $('html, body').animate({scrollTop: $(ui.newHeader).offset().top}, 1);
    So now I need some help...
    Thx
    -Eric

    Hello,
    You can achieve this using the Anchors feature of Muse. Please follow the steps below :
    - Click on Anchor option in the toolbar as shown in the image :
    - Now click on the location on the webpage which you want to be the top of the page when click on Accordian panel triggers.
    - It will place the Anchor on that location. Now it will ask you to rename the anchor. Please rename the anchor to something convenient.
    - Now click on the first Accordian trigger and in the "Hyperlink" option in  the toolbar at the top, from the dropdown select the Anchor which you have added.
    - Do same for all the Accordian triggers.
    Now preview in a browser to see the results. Whenever you click on the Accordian trigger it will move to the location on the page where you have placed the anchor.
    Note : There is a known issue with the Anchors feature not working with Safari 6 (The latest version of Safari). It is a known bug and is likely to get fixed in future versions. You can test it using other Browsers.
    Hope this helps.
    Regards,
    Sachin

  • Text Shift Uncontrollably Inside Accordion Widget

    Guys hi! I've been crashing my head for two days with this. Hope you will provide some help!
    I have an Accordion Widget with a very long text block inside one of the boxes (a list with over 80 lines). On the background to each second line I put a grey rectange shape just to give some contrast to the lines in the list. In the project all the rectangles are prefectly aligned to be right behind the lines. But when I publish the site I definately see that the rectangles shift up or down.
    Is it a bug and the widget simply cannon handle correctly so many elements insie the feiled or am i missing something here?
    Many thanks in advance for your advice!! You might be saving me from insanity here;)
    UPDATE!! It was not the shapes but the text that was shifting. I fave some items on the list that consists of two lines. That's where I changed the leading betwin those two lines from 200% (for separate items in the list) to 146% between two lines (for the items that cosist of two lines of the text). That somehow couses the text to shift in the preview mode xompared to the design mode. When I make the leading unilateral throghout the entire textbox everything stands in place.
    Still the problem remains unsolved.

    Zak. thank you very much!
    And sorry for coming back so late on this.
    You solution perfectly solved the problem.
    On the downside,) I did have to change the layout and reformat the site to submit it to the client because the deadline came before I got your reply.
    Perhaps the "Round Leading to a Whole Number" setting should be checked by default to avoid this kind of problems for other users in the future.
    Anyway, a million thanks!

  • Spry Accordion 1.6.1 gains vert & hztl scrollbars in content area.

    I've scratched my scalp raw. This page works fine in both Firefox and Chrome, but picks up vertical and horizontal scrollbars in the content area once open. Is this a known bug, or does it have something to do with the fact that I'm also using a Spry tabs inside the accordion content area? I'm using Spry 1.6.1 and Googling the issue turned up a few other people with the same problem. I've fiddled with the CSS overflow and height properties of the .AccordionPanelContent class, but to no avail. Please help!

    I'm sorry, I did not complete the sentence correctly. The scrollbars appear in IE7. They're fine in Firefox, Chrome and IE8. Should I post html file and dependencies?

Maybe you are looking for

  • Webi Report Scheduling

    Hi All, I want to know when we schedule a Webi report, which server is affected (mean Webi Processing server,Adaptives server). Please advise.. Regards,

  • HP PSC 1507 All-in-One - Scanner stopped working

    Hi I'm on a MacBook Pro with Snow Leopard (10.6.8) and use VueScan (9.1.16) to scan through USB connection. For several years, no problems, always worked. No all of the sudden it stops working. It scans jitter (black/grey/white dots). Anythings I can

  • Ship to, sold to, invoice/credit number, invoice value

    Hi, Does anybody know the field name and the table of these items: ship to, sold to, invoice/credit number, invoice value Any help is welcome. thank you, Roger

  • Script to change colors of Illustrator shapes based on excel data?

    Hi. My Problem: I have a list of names in excel and I would like each name to correspond to a given color. And I have the same number of shapes in Illustrator which I would like the color fill to match those names/colors from my excel file. Is this p

  • My camera is not working for my mac

    My screen in photo booth keeps saying no camera available and I just don't know what to do to get it to work.