1

hey, I want to have CollapsiblePanelExtender on my view and when user click on label panel should expand/collapse. Here is my code:

<table><tr><td> <label id="MyLabel">Text</label></td></tr><asp:Panel ID="MyPanel" runat="server"><table></table>
</asp:Panel>
    <cc1:CollapsiblePanelExtender ID="MyPanel_CollapsiblePanelExtender" 
        runat="server" Enabled="True" TargetControlID="MyPanel" ExpandControlID="MyLabel" CollapseControlID="MyLabel">
    </cc1:CollapsiblePanelExtender>    

Problem is that nothing happens when I click on my label...

Cipiripi
  • 1,123
  • 5
  • 17
  • 33

1 Answers1

1

if you're speaking about asp.net mvc than you can use the jQuery UI Accordion

http://jqueryui.com/demos/accordion/

Omu
  • 69,856
  • 92
  • 277
  • 407