i have deleterow function which i am calling on cellclick event as shown below
$(“#jqxgrid”).on(‘cellclick’, function (event) {
if(event.args.datafield === ‘del’){
var table = $(“#jqxgrid”);
var index = event.args.rowindex;
var uid = table.jqxGrid(‘getrowid’, index);
console.log(“uid :::” + uid + ” index :::” + index);
var commit = table.jqxGrid(‘deleterow’, uid);
console.log(commit);
}
});
it does deletes the row form table.. but commit returns true.. any idea why ?
also after this.. editing of cell stops working.. on the endcelledit(..) it does give me proper oldValue and newvalue (as entered) but cell does not take it. and on screen it still shows old value.