how to do to get the “sort direction” and the “column name” from a datatable?
regards
how to do to get the “sort direction” and the “column name” from a datatable?
regards
Header’s object is available as grid.getColumnConfig("colId").header
The only strict way to get the direction of performed sorting isonAfterSort
event. However, the indicator (arrow) is available as a part of HTML node:
thank you, this is what I was looking for, +:1