We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Make formBuilder treat the fields as text:
public $fb_elementTypeMap = array( 'date' => 'text', 'datetime' => 'text', );
Attach a classname to the generated input-field:
public $fb_fieldAttributes = array( '<name_of_datefield>' => array('class' => 'isDateField'), );
Include this piece of jQuery on the page, which will attach a datepicker to the element:
$('.isDateField').each( function(index, element) { $(this).datepicker({ dateFormat: 'yy-mm-dd', minDate: null, showButtonPanel: true }); } );