You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
information-system/js/bootstrap-form-builder/js/templates/snippet/selectinput.html

19 lines
891 B
HTML

<!-- Select Input -->
<div class="form-group">
{{#label.length}}<label class="col-md-6 control-label" for="{{ id }}">{{ label }}</label>{{/label.length}}
<div class="{{ inputwidth }}">
<div class="input-group">
<div class="input-group-addon">
<select id="{{ selecl_id }}" name="{{ selecl_id }}">{{ #options }}
{{ increIndex }}
<option value="{{ #values }}{{ #getNthValue }}{{.}}{{/getNthValue}}{{ /values }}">{{ . }}</option>{{ /options }}
{{ resetIndex }}
</select> </div>
<input id="{{ id }}" name="{{ id }}" type="text" placeholder="{{ placeholder }}" class=" form-control {{#checked_required}} required {{/checked_required}}" />
</div> {{#helptext.length}} <span class="help-block">{{ helptext }}</span> {{/helptext.length}}
</div>
</div>