Hello Reka,
You can get this information in the column’s cellbeginedit callback function. Here is more about it from the API Documentation:
cellbeginedit – sets a custom function which is called when a cell enters into edit mode. The Grid passes 3 parameters to it – row index, column data field and column type. The function can be used for canceling the editing of a specific Grid cell. To cancel the editing, the function should return false.
{ text: ‘Product’, columntype: ‘dropdownlist’, datafield: ‘productname’, width: 177,
cellbeginedit: function (row, datafield, columntype) {
if (row == 2)
return false;
}
}
Best Regards,
Dimitar
jQWidgets team
http://www.jqwidgets.com/