This code does not work in my simple volt:
<?php echo Phalcon\Tag::dateTimeField(array("startdate", "size" => 20, "maxlength" => 20, "type" => "datetime", "class" => "datepicker hasDatepicker", "id" => "startdate")); ?>
I mean it only shows text firld. Is this invocation correct ? This works fine:
<?php echo Phalcon\Tag::dateField(array("birthdate", "size" => 8, "maxlength" => 8, "type" => "date", "class" => "datepicker hasDatepicker", "id" => "birthdate")); ?>