Hi – I have a simple csv-bound grid for which the sort and filter events will not fire, even though the bindingcomplete does.
THe heading for the grid is:
width: 1500,
height: 800,
source: dataAdapter,
sortable: true,
filterable: true,
filtermode: ‘excel’,
altrows: true,
columnsresize: true,
and the event functions are declared as :
$(‘#jqxGrid’).on(‘sort’, function (event)
{
alert(‘Sorted’);
});
$(‘#jqxgrid’).on(‘bindingcomplete’, function (event) {
alert(“Binding is completed” );
});
$(‘#jqxGrid’).on(‘filter’, function (event)
{
alert(“filter”);
});
Tried this with Firefox and Chrome, no luck.
Any ideas as to where I am going wrong?