Reputation: 8072
In Yii 1 i could set onchange event for dropDownList by this method:
CHtml::dropDownList('id', $select, $list, array('onchange'=>'this.form.submit()'))
And it was pretty good. But in Yii 2 it doesn't work, how do i solve this issue?
Upvotes: 7
Views: 28057
Reputation: 4313
this code submits on change properly:
<?php use yii\helpers\Html; ?>
<?= Html::beginForm() ?>
<?= Html::dropDownList(
'test', //name
'b', //select
['a'=>'A', 'b'=>'B'], //items
['onchange'=>'this.form.submit()'] //options
)?>
<?= Html::endForm() ?>
Upvotes: 13