Yii 2 ActiveForm form field how to implement “select all” option in checkboxlist?
问题 Yii 2 ActiveForm form field how to implement "select all" option in checkboxlist? <?php $form = ActiveForm::begin([ 'id' => 'form-id', 'type' => ActiveForm::TYPE_HORIZONTAL, 'options' => ['class' => 'well'], ]); ?> <?php echo $form->field($model, 'MY_DESC', ['template' => "{label}\n{input}\n{hint}\n{error}"]) ->label(false) ->checkboxList($mylist, ['separator' => '<hr>']); ?> <?= Html::submitButton('submit', ['class' => 'btn btn-primary']) ?> <?php ActiveForm::end(); ?> 回答1: 1) Add checkbox