LoginSignup
0
3

More than 5 years have passed since last update.

Bootstrap 3 Date/Time Picker で週の始まりの曜日を変更したい場合

Posted at

Bootstrap と併用する日時ピッカーのこれが便利なんだけど

デフォルトでは週の始まりが日曜日になっていて、ドキュメントを見てもこれを変更するオプションが見あたらない。

けど月曜始まりのカレンダーを使いたいから何とかしたい。

Bootstrap 3 Date/Time Picker は日時の処理に moment.js を使ってるから、moment 側でロケール設定を変えればいいのだった。

moment.locale('ja', {
    week: {
        dow: 1
    }
});

これで月曜始まりになる。よかった。

0
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
3