I am trying to add a checkbox list to an itemtemplate for the radmenu. It binds fine but when the page displays the menu item with the checkbox lists is displayed and does not expand collapse.
| <telerik:RadMenuItem runat="server" Text="Marketing"> |
| <ItemTemplate> |
| <div id="MarketingTemplate"> |
| <div> |
| Species<asp:CheckBoxList ID="CheckBoxList1" runat="server" DataSourceID="odsSpecies" |
| DataTextField="Name" DataValueField="Name"> |
| </asp:CheckBoxList> |
| <asp:ObjectDataSource ID="odsSpecies" runat="server" OldValuesParameterFormatString="original_{0}" |
| SelectMethod="GetSpeciesList" TypeName="Adisseo.Modules.DocumentManagement.KeywordManager"> |
| </asp:ObjectDataSource> |
| </div> |
| <div> |
| Feed Type<asp:CheckBoxList ID="CheckBoxList2" runat="server" DataSourceID="odsFeedTypes" |
| DataTextField="Name" DataValueField="Name"> |
| </asp:CheckBoxList> |
| <asp:ObjectDataSource ID="odsFeedTypes" runat="server" OldValuesParameterFormatString="original_{0}" |
| SelectMethod="GetFeedTypeList" TypeName="Adisseo.Modules.DocumentManagement.KeywordManager"> |
| </asp:ObjectDataSource> |
| </div> |
| </div> |
| </ItemTemplate> |
| </telerik:RadMenuItem> |