When I edit a record that has a date column, the popup calendar on edit screen shows a datepicker like popup calendar, however the week start day is Monday, how can I make the start day Sunday?
Jim
1 Answers
Hi,
We use jQueryui datepicker so you can set firstDate as per link below:
# opts array can have these options: http://api.jqueryui.com/datepicker/
$col[“formatter”] = “date”;
$col[“formatoptions”] = array(“srcformat”=>’Y-m-d’,”newformat”=>’d.m.Y’, “opts” => array(“firstDay”=> 0));
Your Answer