ember-select-menu
v0.1.8
Published
A simplified interface for custom select widgets. The handlebars is straightforward and easy to read:
Downloads
5
Readme
ember-cli {{select-menu}}
A simplified interface for custom select widgets. The handlebars is straightforward and easy to read:
<label for="country">Where are you from?</label>
{{#select-menu id="country" prompt="Select a country" value=country search-by="label code"}}
{{#each it in countries}}
{{select-option value=it label=it.name code=it.code}}
{{/each}}
{{/select-menu}}
This addon comes with baked in WAI-ARIA support for screen readers, keyboard navigation and keyboard search.
Installation
git clone
this repositorynpm install
bower install
Running
ember server
- Visit your app at http://localhost:4200.
Running Tests
ember test
ember test --server
Building
ember build
For more information on using ember-cli, visit http://www.ember-cli.com/.