Hello,
I gote some problems to get the dateformat right.
After my date field has lost focus I want it to show like:
dd-mm-yyyy but it has to be saved in the database like
yyyy-mm-dd. .
This is what i have so far:
$("#birthdate").datepicker({
changeMonth: true,
changeYear: true,
altFormat: 'yyyy-mm-dd'
});
Now it's shown in the date field like 11/25/2009 (nov 25th 09) and posted like 11/25/2009
any idea's?