I tried the following code:
var dateElement = Appery("event_date_input");
dateElement.setProperty("defaultDateValue", $.datepicker.formatDate(dateElement.datepicker_dataPickerOptions.dateFormat, new Date()));
where event_date_input is my datepicker input from the drag and drop menu.
and got this in the console:
Uncaught TypeError: Cannot read property 'formatDate' of undefined
I'm trying to set the minimum date on pageshow to the current date.
Any help is much appreciated, thanks!