jQuery Datepicker Test
For testing localization and other options in the date input component
HTML
<link rel="stylesheet" href="http://cdn.wijmo.com/themes/aristo/jquery-wijmo.css">
<link rel="stylesheet" href="http://cdn.wijmo.com/jquery.wijmo-complete.all.2.1.0.min.css">
<script src="http://cdn.wijmo.com/jquery.wijmo-open.all.2.1.0.min.js"></script>
<script src="http://cdn.wijmo.com/jquery.wijmo-complete.all.2.1.0.min.js"></script>
<script src="http://www.fleetmon.com/static/js/globalize/cultures/globalize.culture.fr-CH.js"></script>
<script src="http://jquery-ui.googlecode.com/svn/tags/latest/ui/minified/i18n/jquery-ui-i18n.min.js"></script>
<h1>Test localized jQuery UI Date picker</h1>
<p>(combined with Wijmo textbox styling)</p>
<p><input type="text" value="Regular text field"></p>
<p><input type="text" class="datepicker" name="test12345_6" size="15"></p>
<p>Documentation:
<a href="http://jqueryui.com/demos/datepicker/#localization">jQuery Datepicker</a>
</p>
CSS
body { margin-left:1em; }
h1 { font-weight:bold; }
h1, p { margin:1em 0; }
JavaScript
$.datepicker.setDefaults(
$.datepicker.regional[ "kr-KO" ]);
$('.datepicker').datepicker({
dateFormat: 'dd/mm/yy',
});
$('.datepicker').datepicker("option", { disabled: false } );