@aujsf/bootstrap-theme
Version:
Bootstrap 4 Theme for @aujsf/core
24 lines (15 loc) • 615 B
HTML
<template>
<require from="@aujsf/bootstrap-theme/aujsf-bs-label.html"></require>
<div class="form-group">
<aujsf-bs-label id.bind="id" title.bind="title" required.bind="required"></aujsf-bs-label>
<select multiple class="form-control" id.bind="id" value.bind="value">
<option repeat.for="option of schema.items.enum" model.bind="option">
${option}
</option>
</select>
<small class="form-text text-muted" if.bind="description">${description}</small>
<div class="invalid-feedback" repeat.for="error of errorMessages">
${error}
</div>
</div>
</template>