Alt message is required while sorting the grid columns

Hi,



When I am clicking on Sort Icon / Column Name, it should display alt message like “Currently Sorting in Ascending Order…”.

How can we added this type of message?



Thanks,

Sachin M

Do you mean some kind of custom tooltips for asc and dsc icons in grid’s header?
Can be done as

grid.attachEvent(“onAfterSorting”,function(col,type,order){
grid.sortImg.alt=“Currently sorting in “+order+” order”;
});