Hello all,
I am trying to select an entire row on a click on a node.
I have set ShowLines = false and set the fullrowselect = true.
Seems like the fullrowselect property has no effect on the the actual tree and I am still not able to select an entire row.
Any help is appreciated
Hi,
You have to turn off ShowRootLines, as well:
this.ultraTree1.ShowLines = false; this.ultraTree1.ShowRootLines = false; this.ultraTree1.FullRowSelect = true;
Also, I'm pretty sure this only works in the standard viewstyle. If you are displaying columns, this property has no effect.