Views: Make dropdown placeholder non-selectable

This commit is contained in:
Riyyi
2022-12-03 16:07:35 +01:00
parent f7c6276a7a
commit dfdcd992ad
2 changed files with 5 additions and 1 deletions
+1
View File
@@ -48,6 +48,7 @@
<select name="<?= $name; ?>" class="custom-select" <?= $required; ?>>
<?php foreach($this->dropdownData[$key] as $dropdownKey => $value) { ?>
<option value="<?= $dropdownKey; ?>"
<?= ($dropdownKey == 0) ? 'disabled' : ''; ?>
<?= $this->model->$name == $dropdownKey ? 'selected' : ''; ?>>
<?= $value; ?>
</option>