Hello.
I’m using jqxgrid with remote data provider like below.
var dataSource = { datatype: 'json', datafields: [ .... ], root:'DATA', data: { // parameters for ajax request }, url: // URL for remote data provider, beforeprocessing: function(data) { dataSource.totalrecords = data.TOTAL_COUNT; }};var dataAdapter = new $.jqx.dataAdapter(dataSource);$("#gridobj").jqxGrid({ width: 750, .... sortable: false, altrows: true, pageable: true, enabletooltips:true, virtualmode: true, columns:[ .... ], source: dataAdapter, rendergridrows: function(param) { return dataAdapter.records; }, pagerrenderer: function() { // custom pager renderer sources }});
It works nicely, with no error.
But there is a problem that jqxGrid requests grid data twicely every time.
Is any wrong usage on my sources or known problems in jqxGrid?