After sorting in cell of header displayed icon (sort_asc/desc.gif). Need after change sorting state, change style of cell on wich displayed icon. Thank for help.
You can use onAfterSorting event, and from it change styling of related cell
grid.attachEvent("onAfterSorting", function(col, type, order){
grid.hdr.rows[1].cells[col].style.backgroundColor = "red";
});
thanks a lot!