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
555
Rowheader in UltraGrid
posted

I am binding UltraGrid at runtime but rowheader is not visible.  I cant multiple rows from the grid.  How to make rowheader for UltraGrid visible.

Parents
No Data
Reply
  • 69832
    Verified Answer
    Offline posted

    this.ultraGrid.DisplayLayout.Override.RowSelectors = DefaultableBoolean.True;

    Note that they are actually visible by default, which means you are probably hiding them without realizing it, so you should probably search for the text ".RowSelectors =", find where it is being set, and remove that line of code.

Children