shorif2000
shorif2000

Reputation: 2654

yii2 remove optgroup from dropdownlist

How can i remove the optgroup from a checkbox field

<?= $form->field($model, 'survey_type')->dropDownList([$surveyTypeList],['prompt'=>'Select Survey Type','id'=>'Survey_Type_dropdown']) ?>

provides following html

<label class="control-label" for="Survey_Type_dropdown">Type</label>
<select id="Survey_Type_dropdown" class="form-control" name="Surveys[survey_type]">
<option value="">Select Survey Type</option>
<optgroup label="0">
<option value="2D">2D</option>
<option value="3D">3D</option>
</optgroup>
</select>

<div class="help-block"></div>

Upvotes: 3

Views: 3891

Answers (1)

J&#248;rgen
J&#248;rgen

Reputation: 3567

You have to send $surveyTypeList as a variable, not a array.

Just remove [].

Upvotes: 11

Related Questions