Pit Digger
Pit Digger

Reputation: 9800

AJAX Accordion Expand all Panels on page load

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

Upvotes: 1

Views: 5828

Answers (1)

VinayC
VinayC

Reputation: 49195

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.

Upvotes: 5

Related Questions