Hi All,
I am working on a WPF C# application which has a tree view. The tree view is populated by a set of model classes. Each element on the tree view except for the root node has a checkbox. The issue now is that when i check a checkbox, it is selecting all the checkboxes under the same parent level.
Instead i would want it to select all the child nodes under the parent node.
For instance:
RootNode
Parent1 Node
Child1
Child2
Parent2 Node
Child3
Child4
and so on.
The current behavior is such that if i check the checkbox beside Parent1 Node, it is selecting Parent2 Node as well and no child elements are selected.
Instead i would want it to check the checkboxes of Child1 and Child2 if i check the Parent1 Node.
Can anyone please help me on this??7894-checkbox-issue.txt
Thank you in advance!!