3.2.0

how to make a column readonly in grid?

i want to make a column readonly in grid. please help!
kishor
December 15,
You can enable/disable cell editing with cellEditable property -

obj.setCellEditable(true); // enable editing for all columns
obj.setCellEditable(false, 1); // disable editing for column-1

The above code will disable editing for the second column.
Alex (ActiveWidgets)
December 15,

This topic is archived.

See also:


Back to support forum