Cancel sorting options
Clicking on the column headers toggles sort order. I want to click once for ascending, again for descending, and again to turn sorting off. How do I accomplish this?
Kwooda
February 21,
var saveDoSort = obj.onHeaderClicked;
function myDoSort(event,index,header) {
if (this.getSortDirection(index)=="descending") {
this.setSortColumn(index);
this.setSortDirection("",index);
} else {
if (saveDoSort) saveDoSort(event,index,header);
}
}
obj.onHeaderClicked = myDoSort;
This topic is archived.
ActiveWidgets is a javascript library for creating user interfaces. It offers excellent performance for complex screens while staying simple, compact and easy to learn. Deployed by thousands of commercial customers in more than 70 countries worldwide.
Copyright © ActiveWidgets 2021