jQWidgets Forums

jQuery UI Widgets Forums Plugins Data Adapter refresh data issue

This topic contains 1 reply, has 2 voices, and was last updated by  Peter Stoev 11 years, 1 month ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • refresh data issue #49927

    grandehombre
    Participant

    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/

    refresh data issue #49939

    Peter Stoev
    Keymaster

    Hi grandehombre,

    To refresh the Grid’s data you should use updatebounddata. That method will make the call to your server if you perform the server calls through jqxDataAdapter. “localdata” is for local data sources.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com/

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.