Is there a programatic way to ensure that a parent node can only have 1 checked child? For instance, consider the following tree:
Marital Status
Single
Married
So if you click Single the code will ensure that the Married not will not be checked. Much like a radio buttons...
Any ideas?
Hello Aaron,
Thank you for your post. I have been looking into it and I created a sample project for you with the functionality you want. Basically I handled the NodeCheckedChanged event and uncheck the CheckBox if there is another item already checked.. Please let me know if this helps you or you need further assistance on this matter.
Looking forward for your reply.
Stefan actually what i want is if the user checks a node, then decides to check another one.... the original node will be unchecked and the new node will be checked.
when i go to uncheck all nodes the NodeCheckChange event fires until i get a stackoverflow....