Is there a way we could check whether all the nodes in a particular Level of a Telerik RadTreeControl are Selected using C# code(preferably LINQ)
I am using the the below code to get the Value for the Checked nodes in Level 1
selectedValues = string.Join(",", radTree.CheckedNodes.Where(node => node.Level == 1).Select(node => node.Value).ToArray());
Thanks in advance!