foundation-datepicker
foundation-datepicker copied to clipboard
Showing Datepicker Inline
I would like to add the datepicker without clicking anywhere, is it possible? Thanks in advance, Luca
yeah same here.
+1
+1
Adding fdatepicker inline to a DIV instead to an INPUT would work if line 30 of foundation-datepicker.js is changed from this
this.isInline = false;
to:
this.isInline = options.isInline || false;
Then the inline functionality is available as option, like:
$('#selector').fdatepicker({ isInline:true });