Hello
I'm using the jquery datepicker from jqueryui.com and I have a problem changing the calendar to swedish, I have this code:
<script type="text/javascript">
$(function() {
$.datepicker.setDefaults($.datepicker.regional['sv']);
$("#StartDate").datepicker();
$('#StartDate').datepicker('option', 'dateFormat', 'yy-mm-dd');
});
</script>
still it shows as an english calendar.
What might be missing?
/M