mirror of
https://github.com/documize/community.git
synced 2025-07-22 14:49:42 +02:00
12 lines
460 B
Handlebars
12 lines
460 B
Handlebars
<select {{action 'change' on='change'}} class="form-control {{cssClass}}" readonly={{readonly}}>
|
|
{{#if prompt}}
|
|
<option disabled selected={{is-not selection}}>
|
|
{{prompt}}
|
|
</option>
|
|
{{/if}}
|
|
{{#each content key="@identity" as |item|}}
|
|
<option value="{{read-path item optionValuePath}}" selected={{is-equal item selection}}>
|
|
{{read-path item optionLabelPath}}
|
|
</option>
|
|
{{/each}}
|
|
</select>
|