I want to my calendar week start with monday. Im using Bootstrap Datetimepicker, but I don't know how to do that. There's my JSFiddle.
This is my jQuery for datetimepicker
$(function () {
$('.datetimepickerinline').datetimepicker({
inline: true
});
$('.datetimepickerinline').on('change dp.change', function(e){
$('input').val($(this).data('date'));
});
});
I cant find any solutions in documentation, that's why Im asking it there :)