I just just use the standard package of http://jqueryui.com/demos/datepicker/.
And docs there doesn’t say how to setup some other language than English.
So I have this code and how I can implement it?
<script type="text/javascript">
$(function () {
// Datepicker
$('.datepicker').datepicker({
inline: true
});
});
</script>
This link says that I have to do like
<script type="text/javascript" src="js/jquery.ui.datepicker-<% insert language code here%>.js"></script>
But I have totally different links to files…
Links:
<link href="@Url.Content("~/Scripts/jquery-ui-1.8.18/css/flick/jquery-ui-1.8.18.custom.css")" rel="stylesheet" type="text/css" />
<script src="@Url.Content("~/Scripts/jquery-ui-1.8.18/js/jquery-1.7.1.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery-ui-1.8.18/js/jquery-ui-1.8.18.custom.min.js")" type="text/javascript"></script>
Hey are you looking for this
http://docs.jquery.com/UI/Datepicker/Localization
localized demo: http://jqueryui.com/demos/datepicker/#localization
Keith wood has a personal page as well if you google Jquery datepicker.
Hope this helps, cheers