vote up 0 vote down star
1

Hi guys, I am using the UI datepicker and I have already limited the date range possible, bt now, I also want to change the format becuase my mysql database is not storing the dates as the format is not the ISO format(yyyy-mm-dd), it is more like(dd-mm-yy), here is my code please! :

$(function() { $("#datepicker").datepicker({minDate: +7, maxDate: '+4M +10D'}); });
flag

3 Answers

vote up 0 vote down

thank you guys, but what worked for min the end was changing the format in the ui datepicker.js script, it was that simple. thank you for anwering though

link|flag
vote up 1 vote down

Please have a look the site:

$('#datepicker').datepicker('option', {dateFormat: 'yyyy-mm-dd'});
link|flag
vote up 1 vote down

Check - http://docs.jquery.com/UI/Datepicker/$.datepicker.formatDate

Easy as replace dd/mm/yy with format of choice :)

.datepicker({ dateFormat: 'dd/mm/yy' });
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.