I am new to process wire.
I am using InputfieldForm to create an Input form in my site with some text fields and one Datetime files:
// get the conference date and time
$field = $modules->get("InputfieldDatetime");
$field->label = "Conference Date";
$field->attr("id+name","date");
$field->required = 1;
$field->datapicker = 2; // picker on Click
$field->dateInputFormat = 'Y/m/d';
$field->timeInputFormat = 'H:i';
$form->append($field);
The form works Ok, but the data picker is never there!!!
The Datapicker is working Ok in the admin panel!!
I also need some help in how to change the stytes in my InputfieldForm, an example with one or two fields is perfect.
Can any one help me
Thanks,
Vitor Garcia Graveto