I'm trying to do something that I think shold be simple but it doesn't seem to be working. I have the TreeView set with a datasource to build out one level of nodes. Within each of those nodes I want a CheckBoxList which uses another datasource. When I do this though the CheckBoxList doesn't show up at all. Do I need to go about this another way?
<telerik:RadTreeView ID="rtvCapabilities" runat="server" CheckBoxes="false" DataSourceID="odsCapabilityList" DataTextField="Capability_ID" DataValueField="Capability_ID"> <Nodes> <telerik:RadTreeNode> <NodeTemplate> <asp:CheckBoxList ID="cblExpertise" runat="server" RepeatColumns="3" RepeatDirection="Vertical" DataSourceID="odsWSExpertiseList" DataTextField="Description" DataValueField="ID" /> </NodeTemplate> </telerik:RadTreeNode> </Nodes></telerik:RadTreeView>