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