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
280
how can deactivate a grid?
posted

 anyone know how to deactivate a grid so that no row is selected?

EDIT:
Or at least how move the activated row? i have tried gridname.activerow =datarowname but it only moves the little black arrow in the corner not the color of the row. any ideas would be great!

  • 1590
    posted

    Hello. 

    I could not completely understand what you were trying to do.

    If you want that there will not be any rows selected try this: 

                grid.ActiveRow.Selected = false;
                grid.ActiveRow = null;