3.2.0

How do you make a column uneditable?

Suppose you've set up your grid to be editable. How would one set the first column so that the cells in that column were not editable, leaving the rest of the grid to be editable.
Eric Juvet
June 16,
This code should do it -

obj.setCellEditable(true); // all cells
obj.setCellEditable(false, 0); // first column
Alex (ActiveWidgets)
June 19,
Thank you!
Eric Juvet
June 21,

This topic is archived.

See also:


Back to support forum