I'm trying to use a panel bar to create a similar menu to this:
http://www.asos.com/Men/Jeans/Cat/pgecategory.aspx?cid=4208#parentID=Rf-100&pge=0&pgeSize=20&sort=-1&state=Rf-100%3DJeans
I've managed to create the basic functionality, but cannot add a 'clear' button to the root panel item whenever a selection is made. How would I go about doing this? I have included an example panel item below. In this example I would need to be able to add it in the cblStyle_IndexChanged code:
<telerik:RadPanelItem Text="Style" Expanded="true">
 <Items>
  <telerik:RadPanelItem>
   <ItemTemplate>
    <asp:CheckBoxList ID="cblStyle" runat="server" AutoPostBack="true" OnSelectedIndexChanged="cblStyle_IndexChanged">
    </asp:CheckBoxList>
   </ItemTemplate>
  </telerik:RadPanelItem>
 </Items>
</telerik:RadPanelItem>
Regards,
Richard

