Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
125
Wintreeview - Fullrowselect property has no effect on the tree
posted

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

 

 

 

Parents
No Data
Reply
  • 469350
    Offline posted

    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.

Children
No Data