Gopesh
Gopesh

Reputation: 3950

How to set minimum date in jsDatepick?

I am using jsDatepick. I need to set minimum date as today's date. Is there any option for this?

Upvotes: 1

Views: 898

Answers (2)

ameya rote
ameya rote

Reputation: 1114

Whenever u get any date selected you fire function where you will compare date..

Isn't it?

Upvotes: 1

Kage
Kage

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

Related Questions