This is a migrated thread and some comments may be shown as answers.

Sorting/Filtering/Paging doesn't work in Detail grid databound through clientside

0 Answers 55 Views
Grid
This is a migrated thread and some comments may be shown as answers.
John
Top achievements
Rank 1
John asked on 28 Sep 2012, 07:26 PM
I have a hierarchical grid with 3 levels, in which the 2nd and 3rd levels are bound on the client side during expansion of the row through the OnDataBinding ClientEvent.

Sample code for binding I am doing:

    function detailGrid_dataBinding(e) {
        if ($(this) != undefined) {
            var grid = $(this).data("tGrid"),
                masterRow = $(this).closest("tr.t-detail-row").prev(),
                dataItem = $("#Status").data("tGrid").dataItem(masterRow);

            grid.dataBind(dataItem.Details);

            e.preventDefault();
        }
    }

However, when I apply the sorting/filtering/paging options to grid in the detail view, the visualization for the feature shows up but they don't function.

Is this a known issue?

No answers yet. Maybe you can help?

Tags
Grid
Asked by
John
Top achievements
Rank 1
Share this question
or