My settings are as given below. when I click on the 'add new' link the ID cell is editable. We want to make that field uneditable.
mySettings = {
columns: {
id: {
title: 'ID',
editable: false,
},
name: {
title: 'Name',
},
lastname: {
title: 'Last Name',
},
}
};