sort direction & column name in datatable

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:

http://webix.com/snippet/855d17fa

thank you, this is what I was looking for, +:1