Bootstrap 3 Datetimepicker 3.0.0 - make a week start on Monday

后端 未结 9 1132
广开言路
广开言路 2020-12-06 10:28

There are few reasons I use Bootstrap 3 Datetimepicker 3.0.0 in my MVC 5 project.

Any idea how to offset week start so it starts from Monday? Language tag also not w

9条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-06 11:07

    You can also override the dow value via the locale when calling datetimepicker()

    $('#myid').datetimepicker({
        format:'YYYY-MM-DD',
        locale:  moment.locale('en', {
            week: { dow: 1 }
        }),
    });
    

提交回复
热议问题