There is no possibility of main use datepicker , but that respects the format d- m -Y and store them in format Y- m -d?
1 Answers
This column settings should input date in d-m-Y format and save in Y-m-d.
$col = array();
$col["title"] = "Date";
$col["name"] = "invdate";
….
$col["formatter"] = "date";
$col["formatoptions"] = array("srcformat"=>'Y-m-d',"newformat"=>'d-m-Y', "opts" => array("changeYear" => true));
Your Answer