Categories | Question details Back To List | ||
How to disable edit on grid Hi, On a grid, the default behavior is on double, the cell goes into the edit mode, how to disable this ? I want to use this grid, just for rendering only. Answer posted by Support on Dec 01, 2008 01:40 Normally it controlled by column types, but if you need to have all grid in readonly mode - jsut add next line to the grid's in init grid.setEditable(false); |