silverstripe-tagfield/templates/TagField.ss

6 lines
277 B
Scheme
Raw Permalink Normal View History

2015-04-14 03:15:28 +02:00
<input type="hidden" name="{$Name}[]" value="0" />
<select $AttributesHTML>
<% loop $Options %>
<option value="$Value.XML"<% if $Selected %> selected="selected"<% end_if %><% if $Disabled %> disabled="disabled"<% end_if %>>$Title.XML</option>
<% end_loop %>
</select>