Hi,
Is there a way to allow single selection of the checkboxes on XamDataTree?
Thanks,
Meisam.
Hi misamae,
I am not sure exactly what is your question. But in XamDataTree for CheckBox Mode you can use -> TreeCheckBoxMode.Manual or TreeCheckBoxMode.Auto. TreeCheckBoxMode.Manual state means that when marking a node as checked the checked/uncheched status of its child nodes will not change.
Example:
dataTree.CheckBoxSettings.CheckBoxMode = TreeCheckBoxMode.Manual;
Does this meet your question?
RegardsTania
You know you can check multiple node's checkboxes. However, I'm wondering if it is possible to remove other checkboxes in case you select a new node.
Hope it's clear now.
Thanks, Meisam.