Reputation: 21
How to set Dropdown list width in Yii2, here the code
<?= $form->field($model, 'id_ts')
->dropDownList(
ArrayHelper::map(vision::find()->all(),'id_ts', 'vision'),
[
'prompt' =>'',
'disabled' => $model->isNewRecord ? true : false
]
) ?>
How to make dropdown list box wider ?
Upvotes: 2
Views: 2608
Reputation: 4261
You can just add style in dropDownList
show below code
<?= $form
->field($model, 'id_ts')
->dropDownList(
ArrayHelper::map(vision::find()->all(),'id_ts', 'vision'),
[
'style' => 'width:15px !important',
'prompt' => '',
'disabled' => $model->isNewRecord ? true : false
]
) ?>
Upvotes: 2