This is essentially the same as Datepicker does not start with the value but that solution doesn't work.
My input is as follows:
<input type="text" name="start" id="start" value="2012-05-01" class="hasDatepicker">
And my call is:
$("#start").datepicker({
"dateFormat":"dd-mm-yy",
"altFormat":"yy-mm-dd",
"changeMonth":true,
"changeYear":true
});
However, the altFormat is ignored and the date selected in the datepicker is always todays date.
I need the display date to be UK format of dd-mm-yy
and the actual value SQL date as yy-mm-dd.
Which setting am I missing?