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.
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.
Thank you. Its working.