This question is locked. New answers and comments are not allowed.
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();
}
}
function clearFilters() {
var grid = $("#grid").data("tGrid");
if (grid) {
updateGrid = false;
grid.filter('');
grid.sort('');
grid.pageTo(1);
updateGrid = true;
grid.ajaxRequest();
}
}