开发者

Problem with Kelvin Luck datepicker [Select Past Dates]

开发者 https://www.devze.com 2023-03-19 05:13 出处:网络
in my project I\'m using this datepicker, I read how to put it into Cakephp here: http://bakery.cakephp.org/articles/agusti/2010/02/02/transparent-datepicker-with-jquery

in my project I'm using this datepicker, I read how to put it into Cakephp here: http://bakery.cakephp.org/articles/agusti/2010/02/02/transparent-datepicker-with-jquery

When I change format to ymd (Ex: 2011-12-10), I can´t select past dates l开发者_StackOverflow中文版ike in the example. http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/datePickerPastDate.html I can't understand how to make past dates selectable.


I found the answer, just need to edit this line:

this.startDate = null;

to:

this.startDate = '2000-01-01';

And edit this:

this.setStartDate(s.startDate);

to:

this.setStartDate('2000-01-01');
0

精彩评论

暂无评论...
验证码 换一张
取 消