Hi Narry,
Thank you for using
Syncfusion Product,
We would like to let you know that your requirement in
"Treeviewadv" can be achieved by creating another list. In the sample
provided, we have found that only a single
list has been maintained due to the nodes which have been checked into that list. We have prepared a sample to achieve
your query. Please have the sample attached below.
Code Snippet[C#] : To get a child node in the list.
List<String> child = new List<String>();
for (int n = 0; n < treeViewAdv1.Nodes.Count; n++)
{
foreach
(TreeNodeAdv childnode in treeViewAdv1.Nodes[n].Nodes)
{
if (childnode.Checked)
{
child.Add(childnode.Text);
}
}
}
Please let us know if you have any concerns,
Regards,
Senthil
kumaranAttachment:
tree1_9b1a0d79.zip