meteor-autoform-materialize
Version:
Materialize theme for Autoform
16 lines (15 loc) • 407 B
HTML
<template name="afSelect_materialize">
<select {{atts}}>
{{#each this.items}}
{{#if this.optgroup}}
<optgroup label="{{this.optgroup}}">
{{#each this.items}}
<option {{optionAtts}}>{{this.label}}</option>
{{/each}}
</optgroup>
{{else}}
<option {{optionAtts}}>{{this.label}}</option>
{{/if}}
{{/each}}
</select>
</template>