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
80
Removing the left side pen indicator?
posted

 On the left side of the grid, there's this left most area with the pen icon in it. I don't know what's called so I don't know how to search the docs for it. How can it be disabled?

Parents
  • 927
    posted

    Those are the row selectors (I think). You can make them disappear completely like this:

    ultraGrid1.DisplayLayout.Override.RowSelectors = DefaultableBoolean.False;

    You may also need to do this to hide the row selectors' column header:

    ultraGrid1.DisplayLayout.Override.RowSelectorHeaderStyle = RowSelectorHeaderStyle.None;

Reply Children
No Data