I have an event handler set up to handle ‘cellvaluechanged’.
If I edit the contents of a column and press TAB or click anywhere else in the grid, the event fires correctly.
However, if I click on a button (which saves grid data etc) that is outside the grid, this event does not fire.
$(dataTable).on('cellvaluechanged', function (event)
{
var args = event.args;
//var column = args.datafield;
var row = args.rowindex;
//var value = args.newvalue;
//var oldvalue = args.oldvalue;
var data = $(dataTable).jqxGrid('getrowdata', row);
});
Any suggestions would be welcome!
Cheers,
Nick
ps: I am using ‘jQWidgets v3.2.2 (2014-Mar-21)’