cyberstammtisch-silverstripe/themes/starter/templates/SilverStripe/Forms/ListboxField.ss
2021-10-20 13:45:30 +02:00

5 lines
278 B
Scheme

<select $getAttributesHTML('class') class="$ExtraClass.ATT form-control">
<% loop $Options %>
<option value="$Value.XML"<% if $Selected %> selected="selected"<% end_if %><% if $Disabled %> disabled="disabled"<% end_if %>>$Title.XML</option>
<% end_loop %>
</select>