简体   繁体   中英

AngularUI Bootstrap datepicker maxDate does not work

I forked the Plunker code from the AngularUI Bootstrap pages (the Datepicker example). I wanted to implement a max date range so you can only select a date in a certain period. You can find the Plunker here: http://plnkr.co/edit/vBrgyC20FBEUzuoprhlh?p=preview

Somehow, the maxDate attribute does not seem to be working while the minDate one does. Does anyone know if I'm doing something wrong here or if it's just a bug?

Your HTML in the plunker

<datepicker min="minDate" show-weeks="showWeeks"></datepicker>

What it should have been

<datepicker min="minDate" max="maxDate" show-weeks="showWeeks"></datepicker>

Seems you just forgot to add the max-attribute?

You have two date pickers in there. :)

<datepicker min="minDate" max="maxDate" show-weeks="showWeeks"></datepicker>

同样为我工作,我在属性max-date方面很挣扎”,感谢ivarni的回答

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM