Yii2 form submit button must be clicked two times for action. How to prevent this?
问题 yii2 submit button needs to be clicked two times in form I have a problem where I need to check more than one submit buttons in the controller. It works but I need to click submit buttons two times. In controller : switch(\Yii::$app->request->post('submit')) { case 'submit_1' : //my code break; case 'submit_2' : //my code In view <?= Html::submitButton('NEXT', ['name' => 'submit', 'value' => 'submit_2','class'=>'btn btn-primary pull-right']) ?> <?= Html::submitButton('PREVIOUS', ['name' =>