2amigos / yii2-date-picker-widget

Bootstrap DatePicker Widget for Yii2
https://2amigos.us
Other
130 stars 77 forks source link

allow custom handler 'changeDate' for inline #56

Closed myname1614 closed 4 years ago

myname1614 commented 4 years ago

in this line overriding config param:

$this->clientEvents['changeDate'] = "function (e){ jQuery('#$id').val(e.format());}";

fix to allow add handler for this case:

<?= DatePicker::widget([
    'inline' => true,
    'clientEvents' => [
        'changeDate' => new \yii\web\JsExpression('function() {console.log("!!!")}'),
    ],
]) ?>