This can be done easy when using afterInsertRow with combination of one hidden field. That is you can color the row this way
afterInsertRow : function(rowid, data) {
if (data.somefield == 'a') {
// color the row
$(“#rowid”,”#mygrid”).css(“color”,”red”)
…
}
}
In a hidden field you have value that the row is used – then you can disable the action on this row
Regards
Tony