I have a rad panel bar with 2 panels:
I populate these table in the code behind (successfully). however, when i click on the panel bar of each panel the panels won't collapse. any ideas why?
| <telerik:RadPanelBar runat="server" ID="RadPanelBar1" Skin="Web20" Width="100%"> |
| <CollapseAnimation Type="InBack"></CollapseAnimation> |
| <Items> |
| <telerik:RadPanelItem Text="<%$Resources:RESX_SwitchSettings %>" Expanded="True" |
| Value="tblConfiguration"> |
| <ItemTemplate> |
| <asp:Table runat="server" ID="tblConfiguration" BorderWidth="1" CellSpacing="5" CellPadding="5" |
| > |
| </asp:Table> |
| </ItemTemplate> |
| </telerik:RadPanelItem> |
| <telerik:RadPanelItem Value="tblConfigurationAdvanced" Text="<%$Resources:RESX_AdvancedSwitchSettings %>" Expanded="false"> |
| <ItemTemplate> |
| <asp:Table runat="server" ID="tblConfigurationAdvanced" BorderWidth="1" CellSpacing="5" |
| CellPadding="5"> |
| </asp:Table> |
| </ItemTemplate> |
| </telerik:RadPanelItem> |
| </Items> |
| </telerik:RadPanelBar> |
I populate these table in the code behind (successfully). however, when i click on the panel bar of each panel the panels won't collapse. any ideas why?