Hi, me again 
As processing a json string instead of object field is indeed a performance issue, I decided to go to virtualmode. I already consulted this
demo and thisforum topic.
Well, scrolling is working great, and sorting is also calling the backend after I added sort: function() { $("#jqxgrid").jqxGrid('updatebounddata', 'sort'); },
.
But I have trouble with filtering. I need to use showfilterrow: true
, since the filter dialog is not suitable. Calling updatebounddata
on filter in this scenario is a disaster, since the filter event is called on every keypress, and updatebounddata
is clearing the filterrow also. This however is a great feature when not in virtual mode.
Please, give an advice.
Thank you in advance