Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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??

like image 701
Mellon Avatar asked Feb 15 '11 12:02

Mellon


1 Answers

$( ".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
like image 115
David Thomas Avatar answered Sep 20 '22 01:09

David Thomas