accordion

jQuery & Prototype Conflict

Hi, I am using the jQuery AutoComplete plugin in an html page where I also have an accordion menu which uses prototype. They both work perfectly separately but when I tried to implement both components in a single page I get an error that I have not been able to understand. uncaught exception: [Exception... "Component returned failure...

Using jQuery accordion with strange markup.

I have this HTML structure and want to convert it to an accordion. <div class="accor"> <div class="section"> <h3>Sub section</h3> <p>Sub section text</p> </div> <div class="section"> <h3>Sub section</h3> <p>Sub section text</p> </div> <div class="section"> <h3>Sub section</h3> ...

ASP.NET Accordion

So I'm amending someone else's code, and they've used a data-bound Accordion control. I need to disable the Accordion functionality so that the top item is expanded and the rest are just minimized and kept that way. Also is there any way to put a class on the final item? Thanks a lot in advance. ...

Custom accordion - using each

Hey, I am trying to create a custom accordion for my page to that display my posts. I have it in list format using HTML and I am trying to create an effect when you click each header to expand to show more information. But I don't want to have say 6 blocks of code for 6 of the <li> elements I have on the page. Is there a way to run it...

jQuery Accordion: links don't work

I'm working on a page using jQuery's accordion UI element. I modeled my HTML on that example, except that inside the <li> elements, I have some unordered lists of links. Like this: $(document).ready(function() { $(".ui-accordion-container").accordion( {active: "a.default", alwaysOpen: true, autoHeight: false} ); })...

jQuery Accordion: IE animation issues

Update I am making this a community wiki, for three reasons: I don't feel like I got a definitive answer, but I have long since stopped needing an answer, because I rolled my own accordion function this question gets tons of views, so clearly lots of people are still interested So if anybody wants to change/clarify this question and...

ASP.NET toolkit Accordion double click issue

I am using a accordion control which has nested gridviews within the content section and a series of buttons. When the page is first loaded, it requires 2 clicks before any button or linkbutton's events are fired. For the buttons I have hacked together a fix using external buttons which I invoke via javascript, however for the gridview...

.net Accordian Causing me Problems

I had a bunch of controls that I displayed, hid, enabled and disabled based on actions in the web page. Everything worked until i put them into an accordian. Now I can't get the Javascript to be able to update their state. I have a small example this is the Javascript <script type="text/javascript"> var ctrl = document.getElement...

Jquery Accordion Close then Open

Hi Everyone, I've set up a number of accordions on a page using the jquery accordion plugin so I can implement expand all and collapse all functionality. Each ID element is it's own accordion and the code below works to close them all no matter which ones are already open: $("#contact, #address, #email, #sales, #equipment, #notes, #ma...

Accordion control gets 'extended' when we switch to designer

Hi, I add an Accordion AJAX toolkit control. When I switch back to designer view and get an error like 'Error creating control'. When i switch to the code view all the AJAX controls have been replaced by ACCORDIONEXTENDER with the same ID and so gives an error like 'Toolkit Accordion does not have Extender property'. Why does Visua...

JQuery nested accordion menu problem

I have Nested Accordion menu The Logic is simple I have 2 menu 1a & 1b Onclicking 1a i will get the dataof 1a and two submenu 2a,2b Onclick of 2a ,2b i will get the data of respectively The problem,now is at a time one data should visible! In mycase after pressing 1b the 2b will not hide the data. How to do effectively...

flex 3 accordion component and rounded corners

Hi guys, Im using the accordion component in Flex and cant seem to get the header to have rounded corners. The footer rounds no problem but the header remnains square, any suggestions? ...

JQuery UI Accordion Glitch

Hey everyone, I'm working with JQuery UI 1.6rc5 and I'm having a bit of trouble using an accordion widget. Here's the code I'm using. <script> $(document).ready(function(){ $('#find-panel').accordion({ header:"h3", autoHeight:true, alwaysOpen: false, }); }); </script> <div id="find-panel" class="ui-accordion" ...

jquery plugin or script to automatically cycle through accordion

Hi there everyone! Please could someone advise me regarding this. I am currently using the accordion plugin from bassistance.de working successfully when you hover over each item header to reveal each child content. I am using an unordered list for this (4 list items, each with 2 child items) This is fine, but the requirements now call...

Jquery accordion plugin

Hi : I am use Jquery accordion plugin. I need to use my own header icons, according to doc, i need to create css class with background image. so i did this in my css file. .normal_arrow { background : url(../images/arrowonly.jpg); } .circle_arrow { background : url(../images/circle_arrow.jpg); } .circle_arrow_down { back...

Flex component like a multi-selectable Accordion ?

I'm looking for a component like a single-generation treeview that can collapse a section or expand any or all sections, but it would look like an Accordion: headings and canvas "pages". Obviously, each page would not take up the entire height of the container; they would be fixed height. Perhaps I am not using the correct terminology ...

Accordion-like one-element expanding component in jQuery UI

I need to implement an expanding/collapsing box in jQuery UI. When collapsed, only the box header would show. When expanded, the header+contents would show. What I need to do is very close to jQuery UI one-element accordion with alwaysOpen=false (the same property is called "collapsible" in document, but in practice with jQuery 1.3.2 an...

JQuery Horizontal Accordion CSS

I'm trying to build a simple multi-level UL Horizontal Accordion (or slide menu) in Jquery. Hunter Daley graciously provided the Jquery code, but I can't seem to figure out the css. I know this is newb, but I'm really stuck. When Ul li Ul slides out it creates a linebreak, I'd like to have everything display inline, with no breaks. I...

Link to open jQuery Accordion

I'm trying to open an accordion div from an external link. I see the "navigation: true" option but I'm not sure how to implement it. Do you give each div an id and call the link like this? http://domain.com/link#anchorid I'm new to jQuery so bear with me. Here is the code I'm using if it helps. <script type="text/javascript"> $(fu...

Programmatically controlling a Dojo Accordion

I have a dijit.layout.AccordionContainer on my page which is defined in the html and created when dojo parses the page on load. Then, as the user interacts with the page I use Ajax to retrieve data and programmatically populate the container (removing existing items first). To illustrate my issue simply, here is some code that doesn't ...