Reputation: 3950
I am using jsDatepick. I need to set minimum date as today's date. Is there any option for this?
Upvotes: 1
Views: 898
Reputation: 1114
Whenever u get any date selected you fire function where you will compare date..
Isn't it?
Upvotes: 1
Reputation: 81
A quick change to the code of JsDatePick will accomplish this. It's around line 671 in the full js file
It says if ( ! this.oConfiguration.limitToToday){
Just take out the !
i.e.
if (this.oConfiguration.limitToToday){
Upvotes: 1