jQWidgets Forums

jQuery UI Widgets Forums Grid DataBound event for Grid Row

This topic contains 1 reply, has 2 voices, and was last updated by  Peter Stoev 12 years, 9 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • DataBound event for Grid Row #6330

    aravindanjqw
    Member

    Is there a way to access the databound event for a Grid Row? I have a grid with 5000 rows and all of them have a detail row for nested grid. Even with virtualmode: true, setting the nested grid on the Grid’s bindingcomplete event seems slower.

    Is there a RowItemDataBound event that can be accessed, where the detail row for the current Grid Row can be set, instead of after the grid bindingcomplete ?

    We are evaluating jqxgrid for an enterprise project and a response will be helpful in proceeding further.

    Thanks

    Arvi

    DataBound event for Grid Row #6340

    Peter Stoev
    Keymaster

    Hi Arvi,

    There’s no such event. However, if you use the Grid in paging mode, you can set the details only for the current page by handling the pagechanged event. The event brings information about the current page and the page size.

    Ex:

    $("#jqxgrid").bind("pagechanged", function (event) {
    var args = event.args;
    var pagenum = args.pagenum;
    var pagesize = args.pagesize;
    });

    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.