issue 585: set jQuery Datepicker's default date format

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9905 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
taggon 2011-12-07 05:01:35 +00:00
parent 3d3c414742
commit 77f360f9af
3 changed files with 70 additions and 56 deletions

View file

@ -974,4 +974,11 @@ jQuery(function($){
// cancel default action
return false;
});
// date picker default settings
if($.datepicker) {
$.datepicker.setDefaults({
dateFormat : 'yy-mm-dd'
});
}
});