jQWidgets Forums

jQuery UI Widgets Forums DataTable Loading a table not at startup.

This topic contains 2 replies, has 2 voices, and was last updated by  BrentH 10 years, 5 months ago.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
  • Loading a table not at startup. #61547

    BrentH
    Participant

    Hi, All of your samples show the tables loading at the time the page starts up. Do you have any samples of a table being loaded by a button click? Maybe the button calls a service and brings in the jSON to display in the table. But I can’t see how to late-bind things.

    I found your ‘updateBoundData’ function, but even the sample doesn’t seem to work.

    I was thinking it would just be adding this code – but it doesn’t work.

    var dataAdapter = new $.jqx.dataAdapter(source, { autoBind: true });
        $("#dataTable").jqxDataTable.source = dataAdapter;
        $("#dataTable").jqxDataTable('updateBoundData');
    

    Thanks
    Brent Hoskisson

    Loading a table not at startup. #61576

    Peter Stoev
    Keymaster

    Hi Brent,

    this will not work for the simple reason that a property is not set like that. I would suggest you to read the Getting Started documentation about this widget or any other widget before starting to use it. To set a property, you should write: $(“#dataTable”).jqxDataTable({source: dataAdapter});

    Best Regards,
    Peter Stoev

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

    Loading a table not at startup. #61608

    BrentH
    Participant

    Sorry, I didn’t even notice I did that. It works fine now.

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

You must be logged in to reply to this topic.