accordionpane

How do I bind an ASP.net ajax AccordionPane to an XMLDatasource?

Title says it all. I've got an angry boss that will beat me down if I waste another day on this :-P Many karma points to the ajax guru who can solve my dilemma. But more detail: I want to have an AccordionPane that grabs a bunch of links from an XML source and populate itself from said source. ...

How do I programmatically change ASP.NET ajax AccordionPane with javascript?

I've got an asp.net ajax style AccordionPane control that I am trying to get/set based on some user interactions. However it seems not let me do this with javascript: function navPanelMove() { var aPane = $get('ctl00_Accordion1_AccordionExtender_ClientState'); openPaneID = aPane.get_SelectedIndex(); // doesn't work } ...

Whats the best way to programatically open a pane inside Dijit AccordionContainer.

I am trying open & close accordion panes programatically. Here is the simplified version of my code. Even though I set the first pane's selected to false and and second pane's selected to true, only the first pane opens when it loads on the browser (FF3). var accordionContainer = new dijit.layout.AccordionContainer().placeAt("test"); va...

winforms accordion

Hello guys, anyone know a c# winforms accordion control? preferrably open source or free. ...

How to make height of a dijit Accordionpane dynamic

I can't figure out how to tell the accordioncontainer to set height of its accordion pane to auto so that the height of the pane is dynamic depending on its content. In the following code I am adding two panes to an accordioncontainer. One has height of 10px and another has 90px but in both cases the height of the accordion pane is cal...

How to determine which dijit.layout.AccordionPane is currently selected

Hi there, I tried to use "dijit.layout.AccordionPane.selected" to determine if any given AccordionPane is in focus (selected). However, AccordionPane.selected property will be set to "True" once the AccordionPane is selected, and AccordionPane.selected stays as "True" even other dijit.layout.AccordionPane is selected. So in other words...

accordion pan with gridview

i have gridview read first 3 current events from table i want to display each event in accordion pan ...

Add AjaxControlToolkit accordion pane at runtime loses previous pane(s)

I have an AjaxControlToolkit accordion control that i'm trying to load panes at runtime. When I click a button inside a listview, it should add a new pane to the accordion control. Here is the code that adds the pane in the onitemcommand event within the listview var pane = new AccordionPane { ID = key }; pane.HeaderContainer.Controls.A...

hide a particular pane within an AJAX accordion pane control

How do I hide a particular pane within an AJAX accordion pane control from code behind / programatically? I found the following code, and am not sure how to use in within an ASP.NET page with a master page (where I don't have a head tag in my actual page). In order to hide an Accordion Pane, use the following script: <script type="text...