I've got a RadTreeList but it's showing every thing including the ID and ParentID fields. How do I hide them?
Also, it is showing my URL field. How do I set the DataNavigateUrlField property so they work properly?
Thanks!
Also, it is showing my URL field. How do I set the DataNavigateUrlField property so they work properly?
Thanks!
<telerik:RadTreeList ID="RadTreeList1" runat="server" ParentDataKeyNames="ParentID" DataKeyNames="ID" DataNavigateUrlField="WebAddress"> <Columns> <telerik:TreeListBoundColumn DataField="Title" UniqueName="Title" HeaderText="Title" Visible="False" Display="False"/> <telerik:TreeListBoundColumn DataField="WebAddress" UniqueName="WebAddress" HeaderText="" Visible="False" Display="False" /> <telerik:TreeListBoundColumn DataField="ID" UniqueName="ID" HeaderText="" Visible="False" Display="False" /> <telerik:TreeListBoundColumn DataField="ParentID" UniqueName="ParentID" HeaderText="" Visible="False" Display="False" /> </Columns></telerik:RadTreeList>