I have this php code here:
$col = array();
$col[“title”] = “TRANSACTION DATE”;
$col[“name”] = “date”;
$col[“width”] = “50”;
$col[“editable”] = false;
$col[“formatter”] = “date”;
$col[“formatoptions”] = array(“srcformat”=>’mm/dd/yy’);
$cols[] = $col;
My date example: 12/30/2019
However, the end result is 01/01/1970. Could you please help me fix this issue? I’ll purchase the full version once I get everything working after testing, thanks!
2 Answers
Thanks for updating.
Your Answer