]);
?>
<?= Html::a('Редактировать', [
- Url::to('/store-city-list')], ['class' => 'd-block mt-2 text-decoration-none', 'target' => '_blank']);
+ Url::to('/store-city-list')], ['class' => 'd-block mt-2 text-decoration-none', 'target' => '_blank']);
?>
</div>
</div>
</div>
<div class="col-md-3">
<?= Html::label('Регион'); ?>
- <?= Select2::widget([
- 'name' => 'CityStoreParams[address_region]',
- 'value' => null,
- 'data' => ArrayHelper::map(StoreCityList::findAll(['type' => StoreCityList::TYPE_REGION]), 'id', 'name'),
- 'options' => [
- 'placeholder' => 'Регион',
- 'class' => 'form-select',
+ <?= Html::dropDownList(
+ 'CityStoreParams[address_region]',
+ null,
+ ArrayHelper::map(StoreCityList::findAll(['type' => StoreCityList::TYPE_REGION]), 'id', 'name'),
+ [
'id' => 'region',
- ],
- 'pluginOptions' => [
- 'allowClear' => true,
- ],
- ]); ?>
+ 'class' => 'form-select',
+ 'prompt' => 'Выберите регион',
+ 'data-placeholder' => 'Выберите регион',
+ ]
+ ); ?>
</div>
<div class="col-md-3">