I just downloaded version 3.0
I have the following:
$(“#jqxgrid”).on(‘cellclick’, function (event) {
var column = event.args.column;
var row = event.args.rowindex;
var columnindex = event.args.columnindex;
When I alert(‘row = ‘ + row); it gives me correct row. If I filter a column, and cellclick gets called again, row gives me undefined ?????
Did not have this new issue with 2.9.2
Using virtual mode, with source dataadapter and datatype: “json”
Edit: If I alert(“event.args.value = ” + event.args.value); in same scenario, without filtering it alerts correcte value. If filter is applied, it alerts ‘null’