I'd like to change the Default altFormat, but I can't seem to get it to work.
$("#myFav").datepicker({ dateFormat: 'yy-mm-dd' });
$("#myFav").datepicker('option', 'dateFormat', 'yy-mm-dd');
I thought altFormat would work just the same?
|
I'd like to change the Default
I thought altFormat would work just the same? |
||||
|
|
|
This changes the dateformat in my application:
|
|||
|
|
|
Have you tried what the documentation says:
or
For both the dateFormat and the altFormat:
|
|||
|
|
|
dateFormat set the date of the input that datepicker was called on, use altFormat and altField if you want to set the value of a seperate field (a hidden field that actually get sent to database, or is shared somehow by the application) This code worked for me: [IN HTML]
[IN JAVASCRIPT INCLUDE]
bo huttinger |
|||
|
|