Another thing: I’m sending data by Ajax, with the updaterow method.
$("#jqxgrid").on('cellendedit', function (event) { var args = event.args; $(this).jqxGrid('updaterow', args.rowindex);});
updaterow: function (rowid, rowdata, commit) { // synchronize with the server - send update command $.ajax({ url: 'inc/operacional/viagens_jd_ajax', data: { (...) inicioconsolidacao: rowdata.inicioconsolidacao (...) }, success: function (data, status, xhr) { // update command is executed. commit(true); }, error: function () { // cancel changes. commit(false); } });