I have a page with two tabs on it. When clicking a tab there is an ajax postback. On the first tab is a tree control with check boxes enabled. The tree is loaded on page load if it is not a postback. If I check some boxes in the tree, go to the second tab, then back to the first tab, all the items in the tree are unchecked. What am I missing?
<telerik:RadTreeView ID="treeView" runat="server" DataFieldID="ID" DataFieldParentID="ParentID" DataTextField="Text" DataValueField="ID" Skin="Outlook" CssClass="tree" CheckBoxes="true" OnClientNodeChecked="ClientNodeChecked" EnableViewState="true"> <DataBindings><telerik:RadTreeNodeBinding CheckedField="Checked" Checkable="true" /></DataBindings> <NodeTemplate>......