|
3 | 3 | .listbox.form-control(v-if="schema.listBox", :disabled="disabled")
|
4 | 4 | .list-row(v-for="item in items", :class="{'is-checked': isItemChecked(item)}")
|
5 | 5 | label
|
6 | | - input(:id="getFieldID(schema)", type="checkbox", :checked="isItemChecked(item)", :disabled="disabled", @change="onChanged($event, item)", :name="getInputName(item)", v-attributes="'input'") |
| 6 | + input(:id="getFieldID(schema, true)", type="checkbox", :checked="isItemChecked(item)", :disabled="disabled", @change="onChanged($event, item)", :name="getInputName(item)", v-attributes="'input'") |
7 | 7 | | {{ getItemName(item) }}
|
8 | 8 |
|
9 | 9 | .combobox.form-control(v-if="!schema.listBox", :disabled="disabled")
|
|
14 | 14 | .dropList
|
15 | 15 | .list-row(v-if="comboExpanded", v-for="item in items", :class="{'is-checked': isItemChecked(item)}")
|
16 | 16 | label
|
17 | | - input(:id="getFieldID(schema)", type="checkbox", :checked="isItemChecked(item)", :disabled="disabled", @change="onChanged($event, item)", :name="getInputName(item)", v-attributes="'input'") |
| 17 | + input(:id="getFieldID(schema, true)", type="checkbox", :checked="isItemChecked(item)", :disabled="disabled", @change="onChanged($event, item)", :name="getInputName(item)", v-attributes="'input'") |
18 | 18 | | {{ getItemName(item) }}
|
19 | 19 | </template>
|
20 | 20 |
|
|
0 commit comments