Date sorting in table data

given below is the header definition of date column





data is displayed in the given below order:

20/07/2009

14/07/2009

18/10/2009



Ideally data should be in asc or desc order according to the sorting direction, please suggest any solution.

You can use sortRows() method to sort row in necessary order. Please find more information here dhtmlx.com/dhxdocs/doku.php?id=d … t_sortrows
In case of initialization from httml you can call this command before grid was initialized:



function doOnInit(){
grid.sortRows(col, type, order);
}