Hi,
Is there a way to block a date picker from the grid, to not allow dates selections that go further than todays date?
1 Answers
Hello,
You need to set maxDate param like below:
$col["formatter"] = "date"; $col["formatoptions"] = array("srcformat"=>'Y-m-d',"newformat"=>'d/m/Y', "opts" => array("changeYear" => true, "dateFormat"=>'dd/mm/yy', "maxDate"=>"+0d"));
Your Answer