Block grid editable mode

Hi everyone. I’ve an editable grid. I would like to block the mode “editable” in some case. I’ve tried to use the method “enable” but the problem is that I can’t use the vertical scroll bar of the grid to see all the lines with “enable(false)”. Any one know how I can do that. Perhaps block the double click but how ?! Thank you in advance

I am not sure what you are actually looking for, but you can put fields in the Editor to readonly state via Binder.

    grid.getEditor().getBinder().setReadOnly(true);

Hey, good idea. I’m going to try . Thanks