kartik-v / yii2-date-range

A Date Range Picker for Bootstrap useful for reports and filtering.
http://demos.krajee.com/date-range
Other
93 stars 81 forks source link

Cannot select end date earlier than current date #49

Closed osCMattiFinn closed 9 years ago

osCMattiFinn commented 9 years ago

The datepicker will not display a left arrow to select an end date earlier than the current date.

Deployed like this:

$datepicker = DateRangePicker::widget([
'name'=>'DownloadHistorySearch[download_datetime]',
'convertFormat'=>true,
'pluginOptions'=>[
    'timePicker'=>false,
    'format'=>'d-m-Y',
    'opens'=>'left'
]            
]);
kartik-v commented 9 years ago

This is controlled by the plugin's inherent behavior. Update to the latest release where the plugin has enhancements where you will not face this.

osCMattiFinn commented 9 years ago

Thank you. I have done this and all is good.