Hi,
I am having trouble with grid data refresh.
In a nutshell
– I create the grid in a function.
– Later on, updated data is fetched from the server
– I want to use that data to populate/refresh the grid.
This works if I simply create a new data adapter, with all the field definitions, along with the new data and then assign it to the grid as the new ‘source’.
I was hoping that I could simply pass the array holding the new data to the data adapter, issue an ‘updatebounddata’ and that’s all.
The following works but it feels very wrong, as I am accessing what appears to be a private variable!
var theSrc = $(‘#jqxgrid’).jqxGrid(‘source’);
theSrc._source.localdata = newdata;
$(‘#jqxgrid’).jqxGrid(‘updatebounddata’);
I have created a quick test script in http://jsfiddle.net/W3WBK/5/