Yii2 - How to Hide and Show Div Class using Dropdownlist
Clash Royale CLAN TAG #URR8PPP Yii2 - How to Hide and Show Div Class using Dropdownlist I have this form as show below When study centre Dropdownlist is onchange, when no value is selected, the search criteria should hide. But when a value is selected, is should show. The search criteria should hide by default. Controller public function actionIndex() { $model = new Programme(); $model->scenario = 'import-programme'; return $this->render('index', [ 'model' => $model, ]); } <?php $form = ActiveForm::begin([ 'id' => 'import-programme', 'enableAjaxValidation' => false, 'options' => ['enctype' => 'multipart/form-data'], ]); ?> View <div class="box-info box box-solid view-item col-xs-12 col-lg-12 no-padding"> <div class="box-header with-border"> <h3 class="box-title"><i class="fa fa-search"></i>...