1

I am using ASP.NET AJAX accordion . http://www.asp.net/ajaxlibrary/AjaxControlToolkitSampleSite/Accordion/Accordion.aspx . Is there any way to expand all panels on page load ?

Thanks

Pit Digger
  • 9,618
  • 23
  • 78
  • 122
  • 2
    I think you might want collapsible panels: http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/CollapsiblePanel/CollapsiblePanel.aspx – stephenbayer Oct 10 '11 at 01:15

1 Answers1

4

Accordion control supports only one active pane at a time. You can have all panes collapsed stage but only once can be active at a time.

For what you need, you can use multiple collapsible panels.

Alternative can be to use jquery sliding which I would prefer. Here's the quick fiddle that I put up to start you through.

VinayC
  • 47,395
  • 5
  • 59
  • 72