Depending on the number of records, I am loading a grid in either virtual or non-virtual mode. It works well (to an extent) but when switching from a virtual mode to a non-virtual one, it appears the rendergridrows function is fired for the non-virtual grid one more time.
I switch back and forth by issuing the following commands.
To switch to virtual:
$(“#jqxGrid”).jqxGrid({ source: dataAdapter, virtualmode: true });
To switch to non-virtual:
$(“#jqxGrid”).jqxGrid({ source: dataAdapter, virtualmode: false});
Is there a way to prevent the rendergridrows function from not firing?