It is necessary to pre-select the values in the dropdown. But for some reason, the values do not predispose. How to fix it?
All items - $items
:
array(1) {
[1]=>
string(29) "Санкт-Петербург"
}
$selectedItems
:
array(1) {
[1]=>
string(29) "Санкт-Петербург"
}
<?= Html::dropDownList('cities', $selectedItems, $items, ['class' => 'form-control', 'multiple' => true]) ?>