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
395
Not allow win grid from being inline edit
posted

Hello,

I wonder if we have some setting for win grid to make it not editable?

I know we can set CellActivation for each column. but hopefully we have some short cut....

Cheers,

Elton

Parents
  • 17259
    Offline posted

    Write this:

    grid.DisplayLayout.Override.AllowAddNew = AllowAddNew.No;

    grid.DisplayLayout.Override.AllowDelete = DefaultableBoolean.False;

    grid.DisplayLayout.Override.AllowUpdate = DefaultableBoolean.False;

Reply Children