Twipped / Kalendae

A javascript date picker that just works.
MIT License
1.99k stars 285 forks source link

How can I restrict user to select the date range from current year only. #137

Closed sampatbadhe closed 9 years ago

sampatbadhe commented 9 years ago

I need the calendar to allow user to select the date form this year only. is this possible?

Twipped commented 9 years ago

Yes, you can create a blackout function that returns false for any date outside of the current year.

function (date) {return date.getYear() === (new Date()).getYear();}
sampatbadhe commented 9 years ago

Thanks :) :+1: