TreeView does not check children nodes when checking the parent node

0
0

Is this a missing feature for TreeViewControl?

I try check the parent node, but its children nodes are not checked.

I found out that I can implement it with AfterCheckEvent, but is it necessary for me or any developers?

  • You must to post comments
0
0

That’s by design. Automatically checking all child nodes and children of children would potentially break a lot of code since it’s not a standard behavior in winforms or in most treeview controls we looked at. It also would require the opposite functionality – detect when all children are checked and automatically check the parent.

You can find a lot of references about this related to asp.net, winforms, telerik, and many other component libraries.

It can probably be added as an option.

Best,

Luca

  • Truong Nguyen
    Thank you for your response.
  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.