Hi YSut,
In the cellendedit event, which is fired when a cell’s edit operation has ended, you can get the new value of the cell, among other information:
$("#jqxGrid").on('cellendedit', function (event)
{
// event arguments.
var args = event.args;
// column data field.
var dataField = event.args.datafield;
// row's bound index.
var rowBoundIndex = event.args.rowindex;
// cell value
var value = args.value;
// cell old value.
var oldvalue = args.oldvalue;
// row's data.
var rowData = args.row;
});
Best Regards,
Dimitar
jQWidgets team
http://www.jqwidgets.com/