Thank you for your example.
But I think that’s not convenient.
If I have 40 columns, and only 2 columns is editable.
Then I have to set editable:false to other 38 columns.
Is it possible to set grid’s editable as false,and allow column set editable as true.
Like this
$(“#jqxgrid”).jqxGrid({
width: 500,
theme: ‘energyblue’,
editable: false,
source: adapter,
sortable: true,
columns: [{
text: ‘First Name’,
datafield: ‘firstname’,
width: 90,
editable:true
}]
});