I am trying to bind a radtreeview on page load as below but I am not able to see the radtreeview with binded data on the page, I am able to see the data in the list .ParentId,.Id,.Name,.ParentName
can anyone please look into this ?
< telerik:RadTreeView ID="rtvMyConnections" runat="server" ToolTip="" Skin="DV" EnableEmbeddedSkins="false" CheckBoxes="true" >
</telerik:RadTreeView>
Dim lstresult As New List(Of MyEntity)
Dim svcProxy As IConnectionService = CreateConnectionChannelFactory()
lstresult = svcProxy.LoadMyConnectionsXML()
rtvMyConnections.DataTextField = "ParentName"
rtvMyConnections.DataFieldParentID = "ParentId"
rtvMyConnections.DataFieldID = "Id"
rtvMyConnections.DataValueField = "Name"
rtvMyConnections.DataSource = lstresult
rtvMyConnections.DataBind()