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

[Solved] Client API does not update column header

0 Answers 89 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Vinicius
Top achievements
Rank 1
Vinicius asked on 04 Jul 2011, 10:30 PM
I wrote this little function, what can I do to update the column header?

function clearFilters() {
    var grid = $("#grid").data("tGrid");
    if (grid) {
        updateGrid = false;
        grid.filter('');
        grid.sort('');
        grid.pageTo(1);
        updateGrid = true;
        grid.ajaxRequest();
    }
}
Tags
Grid
Asked by
Vinicius
Top achievements
Rank 1
Share this question
or