ungalnanban
ungalnanban

Reputation: 10327

disable future dates in CJuiDatePicker or EJuiDateTimePicker

I'm using Yii, How to disable future dates in CJuiDatePicker or EJuiDateTimePicker. I should not allow users to select future dates in calander.

Thanks in Advance

Upvotes: 0

Views: 1775

Answers (1)

bool.dev
bool.dev

Reputation: 17478

You can use the maxDate option of JUI DatePicker, by passing it as part of the options array:

'options' => array(
    'maxDate' => 'today', // to allow selection of dates upto today only
)

All the options provided by the underlying jui plugins are provided by their respective CJui* classes in Yii through the options property of the CJuiWidget class.

Upvotes: 2

Related Questions