Is it possible to control how the web interface sorts table column data?
It seems to just sort in ascii or lexical order.
The issue I have is that I have some simple table data that contains dates like the following.
04/Apr/2013
10/Apr/2013
02/Mar/2013
09/Jan/2013
If the web interface sort button is clicked it sorts the list like this :
02/Mar/2013
04/Apr/2013
09/Jan/2013
10/Apr/2013
Where as the expection for a date sort is
09/Jan/2013
02/Mar/2013
04/Apr/2013
10/Apr/2013
I can however work around this by having timeformat as %Y-%m-%d but the client requested format is %d-%m-%y and to be able to sort via this column correctly.
I have the feeling that this is some hardcoded web interface issue right?