I have created a structure using ultra tree control, there is an optionbutton on each node, but when I click on optionbutton of each node, it get selected as you can see in the figure, but I want when I click on optionbutton only one optionbutton of that node should be selected.
How can I achieved this? Please suggest.
The OptionButton node style was really designed to be used in scenarios where the set of options all belong to the same Nodes collection. When this is the case, the control automatically handles exclusivity. You can probably achieve what you describe here by handling the AfterCheck event and clearing the CheckState for all nodes except the ActiveNode.
Thanks Brain Fallon,
I achieved this, and thanks for your quick reply.