Hi,
I got a column with string dates (January, February etc...). Problem when I want to sort this dates, it's not a chronological but alphabetical order. How could I do to have first january, then february etc.
Here is my code
->pipe(new Group(array(
"by"=>"Date",
)))
->pipe(new Sort(array(
"Date"=>"asc"
)))
->pipe($this->dataStore('date'));
Thanks a lot