Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by sachin on Dec 10, 2008 07:03
open dhtmlx forum
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
Answer posted by Support on Dec 10, 2008 07:35
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";
});