3.2.0

Editable Grid - Allow Some Rows To be Edited And Others Not

Editable Grid - Allow Some Rows To be Edited And Others Not

I wanted to be able to have some items editable, and other rows not.

Is there a way to do this?
January 30,
You can assign a function into cellEditable property -

obj.setCellEditable(function(col, row){
    if (row == 0){
        return true; // allow editing for the first row
    }
    return false;
});
Alex (ActiveWidgets)
February 1,

This topic is archived.

See also:


Back to support forum