Hi!
It is possible to format the date field to something like this:
01/Jan/2015
Thank you.
2 Answers
The / character may conflict in date conversion. Instead you can have '01 Jan 2015' date format.
$col["formatter"] = "date";
$col["formatoptions"] = array("srcformat"=>'Y-m-d',"newformat"=>'d M Y');
If you just want to display grid date, with no add/edit/search operations, you can have:
$col["formatoptions"] = array("srcformat"=>'Y-m-d',"newformat"=>'d/M/Y');
Your Answer