Hi,
In the code below I have a dataset connected to a radTreeView. It is recursive and it works. When I try to filter the dataset with the .Select command the radTreeView knows there is data there but the displaymember stays blank - meaning no text in the tree. Why?
Thanks,
Karl
In the code below I have a dataset connected to a radTreeView. It is recursive and it works. When I try to filter the dataset with the .Select command the radTreeView knows there is data there but the displaymember stays blank - meaning no text in the tree. Why?
Thanks,
Karl
private void BindLangDataToTree()
{
this.radTreeView1.DisplayMember = "Thema_" + myLang; ;
this.radTreeView1.ParentMember = "pid";
this.radTreeView1.ChildMember = "id";
this.radTreeView1.ValueMember = "id";
radTreeView1.DataSource = ds_Baum.Tables["Baum"];//.Select("Schule='" + mySchuleID + "'");
}