I’m new to this: I’m playing with Bootstrap Datepicker and have got it to work with
$(document).ready(function () {
$('#datepickeron').datepicker()
});
And then a
<div id="dateoickeron"></div>
But I can’t set first day or weeks like in jQuery UI. Normally I can use firstDay: 1, weekHeader: "Uge", showWeek: true like in jQuery UI and show 3 months like numberOfMonths: [3, 1], stepMonths: 3.
How do I do this for the Bootstrap Datepicker?
Try adding
weekStart. Visit here for more details about it