11 lines
479 B
Scheme
Executable file
11 lines
479 B
Scheme
Executable file
<select {$getAttributesHTML('class')} class="$ExtraClass form-control<% if $Message %> is-invalid<% end_if %>" <% include AriaAttributes %> >
|
|
<% loop $Options %>
|
|
<option value="{$Value.ATT}" <% if $Selected %>selected="selected"<% end_if %> <% if $Disabled %>disabled="disabled"<% end_if %>>
|
|
<% if $Title %>
|
|
{$Title.XML}
|
|
<% else %>
|
|
|
|
<% end_if %>
|
|
</option>
|
|
<% end_loop %>
|
|
</select>
|