Hi Peter,
I have just started using jqx components on my application.
I have a question right here.
$(“#jqxgrid”).on(“cellclick”, function (event) {
var column = event.args.column;
var rowindex = event.args.rowindex;
var columnindex = event.args.columnindex;
if (columnindex == 5)
right here, column index is getting changed when i group by any column, so for example ,if I drag first column to group by, column index becomes 4, for button column. How to resolve this issue?