First off, I want to state, that I've read a lot of threads on this Topic but none solved my Problem.
So I need a german JQuery Datepicker
. So I set the regional attribute in the Datepicker:
<script>
$(function() {
$("#datepicker").datepicker({
numberOfMonths : 3,
showButtonPanel : true,
altField : "#datepicker_input",
dateFormat : "dd-mm-yy"
}, $.datepicker.regional['de']);
});
</script>
But this doesn't seem to work. I also looked for a german JQuery UI
but didn't find anything.
Could you give me a startingpoint here please?
regional['de']
was the result. – Chanteuse