Hi
i have a radtreeview with checkbox that fill with this table
ChildID ChildName ParentID ParentName
1 a
2 b 1 a
3 c 2 b
trwFormName.DisplayMember = "ChildName";
trwFormName.ParentMember = "ParentID";
trwFormName.ChildMember = "ChildID";
i take all node that checked by this code:
foreach (var node in trwFormName.TreeViewElement.GetNodes())
{
if (node.Checked)
{
var t = node.Value;
}
}
but i cant get node id . value is name and not id
please help me