Bootstrap 3 Datetimepicker 3.0.0 - make a week start on Monday

后端 未结 9 1094
广开言路
广开言路 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 10:53

    I stumbled upon the same question, and i'm using:

    • Bootstrap3 Datetimepicker (4.14.30)
    • Moment (2.10.3)

    And, following the answer of user3928861 I found the answer on line 961 of moment.js as follows:

    var defaultLocaleWeek = {
        dow : 1, // Sunday is the first day of the week.
        doy : 6  // The week that contains Jan 1st is the first week of the year.
    };
    

提交回复
热议问题