accordion

ASP .NET C# - Programmatically expand/collapse AJAX accordion panes?

Using .NET 3.5. How do I programmtically expand/collapse the panes contained within a AJAX accordion control? My page will have several accordions controls which I want to be able to mass expand/collapse with some buttons. UPDATE1 My final code solution looks like this: <script language="javascript"> function collapse_all(flag) { if...

jquery accordion, opening a box based on href

I am trying to open an accordion based on a link i send to the page This is my url services.html#branding I am using the following code in the head: <script type="text/javascript"> $(document).ready(function(){ $('#accordion').accordion({collapsible: true, animated: 'slide', autoHeight: false, navigation: true, active : '...

Carriage Return in Accordion Control Header - Silverlight 3.0

Hi Folks. I've got an Accordion control in my Silverlight app, and I'd like to be able to insert a carriage return in the title of one of the AccordionItems. I've tried inserting various symbols such as "" and ""... but nothing has worked. Appreciate any help. Thank you. ...

Make a grid stretch to the width/height of an AccordionItem

I have a couple of Accordions in a Silverlight App I'm writing (even an Accordion inside of an Accordion!) but the layout is driving me insane. For example, suppose you have a 500x500 Accordion. If you have 3 AccordionItems, the "Content" area is whatever the height/width of the Accordion is, MINUS the width/height of each header times ...

Openning percentage on Flex Accordion

Hello guys, I'm currently developing a Flex application with an accordion containing 2 canvas: one of them containing a DataGrid and the other one a form. When the user clicks on one of the DataGrid's rows, it opens the accordion on the second (form) canvas. However, I'd like to open the second part of the accordion only by half, so the...

jQuery Accordion problem with IE7

I have a nested accordion. Works great in Firefox, Safari, Opera, Ie8, and even IE6. But not in IE7. I get a JavaScript error after clicking one of the main 4 links and then clicking another one of the main 4 links. Ideas? http://gator1105.hostgator.com/~carc/projects4.php ...

How do I load content in JQuery Accordion via AJAX

I have a jquery accordion that loads a lot of data. This accordion is generated by querying a database. My question - is there a way to not load the content until a specific element of the accordion has been clicked? Basically, I'd like to replicate the functionality of the jquery tab ajax content load to the accordion. ...

Jquery accordion activate

I'm not getting how to do this, or if I can do this. I have an accordion, multiple sections with each section containing multiple anchor tags each with a unique string id. I'd like to be able to have the accordion open to where a particular element with a given id is. Like say id "item117". Can I use something like $('#accordion').acti...

Silverlight Accordion control: all collapsed when loaded

Hi stackoverflow, I'm currently working on a project where I have an Accordion control on the MainPage. It all works just as intended, but there's a small problem that I cannot seem to get my head around. When I load the page, the first accordion is expanded. Is there any work-around to tell the Accordion control, that all the accordio...

Jquery accordion is working on my computer but not on server

Hi, I'm having problems with jquery accordion together with jquery slider. The jquery slider is nested inside the accordion. On my computer this works fabulously (even though IE gives some problems). I uploaded on the server and it forms up the accordion links but these do not open when u click on them!!. any ideas? link Username:Te...

jQuery: How to set the index of the current open div in jQuery UI accordion?

I'm trying to get a jQuery UI Accordion, with initially all divs collapsed. The doc says // getter var active = $('#div0').accordion('option', 'active'); // setter $('#div0').accordion('option', 'active', -1); Neither of these was working in v1.7.2. The getter always returned null, and the setter had no effect. I found t...

jQuery: How can I reproduce the slide-out effect of the Accordion, without jQuery UI?

I'm just learning jQuery, figuring out what's possible, finding my way around. I'd like to have a div "slide out" like an accordion, but I don't want to pay the cost of the jQuery UI download, and also I want to allow multiple divs to be open at the same time. How does it work? How is the slide-out effect of the accordion done, insi...

Accordion child controls are null until we open the panels

I am using Flex AS3, i have a accordian with two tabs each tab contains some text boxes and i am trying to access these child controls from button event handler which resides outside the accordian, Problem is these controls are null until i open the tabs of accordian. ...

Angled elements in a jQuery accordion list?

I'd like to use something like jQuery's accordion menu, but have the triggered elements be angled. I'm guessing this isn't possible, but thought I'd see if anyone has tried it before. A few less than ideal ideas: Go old-school and work with image maps. I haven't used an image map in years though, so that'd take a bit of testing to see...

Accordion panel with visible option using Jquery

Hi, Good Morning. I am very new to jquery. i want create a Accordion panel using Jquery with visiblility option. Is it possible to set visible false for accordion control in jquery Geetha ...

jquery sortable cannot be dragged outside of accordion

I have 2 connected sortable lists. One is inside an accordion. When I try to drag items from the sortable in the accordion, the helper disappears as soon as I get outside of the accordion. I can drop to one of the other connected sortables and the item will display, but it just doesn't display while I'm dragging. The accordion also s...

Printed hidden moo.fx accordion

Hey everybody, I'm a newbie and need a little help. I am using this accordian script: http://www.nyokiglitter.com/tutorials/2columns.html I would like to be able to print the whole accordion - open and collapsed.I saw this solution for jQuery: http://stackoverflow.com/questions/186035/is-it-possible-to-print-a-div-that-is-hidden-by-j...

Open all accordion windows at the same time

Hi all, I am using jQuery accordion plugin for my application. Is there a way to open sections at the same time(after page has loaded) so that contents of all pages are shown at the same time. If it is not possible please give me a link where I can achieve similar to that functionality. Thanks. I am a newbie to jQuery. ...

stop toggle behaviour of jquery accordion 'active' callback

Hi, when I do : $(#my-accordion).accordion('activate', N); ... to open a specific section of the accordion, the behaviour is not as expected. It does not 'activate' that section programmatically (force it to open). It simply toggles the Nth section of the accordion. Why on earth would they call this function 'activate' instead of 'tog...

How do I remove an active outline from jquery accordion ?

I am using Jquery Accordion. The active link has an outline. I have tried using css: #accordion a:focus { outline: none; } #accordion a:active {outline: none; font-weight:bold;} and also #accordion a:-moz-any-link:focus { outline: none; } None of these seem to work. Can anyone advise a setting or another option to remove the dot...