Hi
I have a column with dates(using string), now I want to preform sort operation on this column and as I see you support only Us Style sorting in date string (MM/dd/yyyy). Is there a chance you support all types of date sorting and i miss it somehow.
Thanks,
Create your own sort function like this:
function dateSort (a,b,ord,aid,bid) { // Get dateA and dateB (...) // Compare dates if (dateA > dateB) return 1; else if (dateA < dateB) return -1; else return 0; } mygrid.setColSorting("dateSort");