3.2.0

Partial grid edit

I'm creating a grid with a locked total column. The grid should be editable except for the total column. If there is already a thread for this, can someone point me to the correct thread. If not, is this doable and how would I approach this?
Xay Moua
May 18,
You can first enable editing for the whole grid and then disable it for the total column -

grid.setCellEditable(true); // enable for all cells
grid.setCellEditable(false, 1); // disable for the column-1
Alex (ActiveWidgets)
May 21,

This topic is archived.

See also:


Back to support forum