marks the sorted column with a dedicated sign (asc/desc) in the header
column_id | string | column ID |
dir | string | sorting direction |
dtable = webix.ui({view:"datatable", ...})
dtable.markSorting("title", "asc");
The method is designed for the cases of programmatic sorting to indicated that the data in the datatable has been sorted.
dtable.sort("title", "asc");
dtable.markSorting("title", "asc");
The method can be called with no parameter to remove all sotring signs from the datatable headers.
Back to top