Reputation: 23
Hi I am developing an application.In that application initially I have date formats as mm/dd/yy.Now I have to change that formats to yy/mm/dd.I have lot of selectors, I couldn't change format for each individual selector by giving date format in it.I want to change that default date format in plugin,so that it would apply to my over all application.
Pls give me suggestions :)
I have tried this in my jquery-ui.js plug in //code
$.datepicker.setDefaults({<br>
showOn: "button",<br>
buttonImageOnly: true,<br>
buttonImage: 'http://jqueryui.com/resources/demos/datepicker/images/calendar.gif',<br>
buttonText: "Calendar",<br>
dateFormat: 'yy-mm-dd'<br>
});
Upvotes: 0
Views: 110