Hi,
How to select particular node based on key value?
Thank you
It is possible that you have left the HideSelection property at its default value of true, which means that selection will not be depicted visually when the control does not have the input focus.
I am using this code to select particular node,
UltraTreeNode node = ut.GetNodeByKey(ID.ToString()); node.Expanded = true; node.Selected = true;
But Node not selected.
ultraTree1.GetNodeByKey()