Mellon
Mellon

Reputation: 38902

JQuery UI datepicker ( start weeks from Monday)

I am using jQuery UI datepicker, I know I can customize this datepicker in this way:

$("#reserve_date").datepicker({
            beforeShowDay: no_disabled_Days
});

currently, my datapicker calendar start weeks from Sunday, I would like it starts weeks from Monday, how to do??

Upvotes: 50

Views: 52966

Answers (1)

David Thomas
David Thomas

Reputation: 253486

$( ".selector" ).datepicker({ firstDay: 1 });

jQuery UI Reference; see the link for a slightly more detailed explanation.

For inline reference:

Sunday     0
Monday     1
Tuesday    2
Wednesday  3
Thursday   4
Friday     5
Saturday   6

Upvotes: 122

Related Questions