# ember-selectize **Repository Path**: mirrors_salsify/ember-selectize ## Basic Information - **Project Name**: ember-selectize - **Description**: An Ember and Selectize integration. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-07-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ember-selectize An Ember and Selectize integration. Check [Selectize](http://brianreavis.github.io/selectize.js/)! ## Demo Check http://miguelcobain.github.io/ember-selectize ## Browser Support Should run wherever Ember and Selectize run. ## How to use Just grab the `src/ember.selectize.js` and drop/include in your build pipeline. Building automation is not available since this is a very simple project (basically an `Ember.View`). The usage should be very similar to `Ember.Select`. For example, in a template you could write: ```handlebars {{ view Ember.Selectize id="type" contentBinding="controller.types" optionValuePath="content.id" optionLabelPath="content.name" selectionBinding="model.type" placeholder="Select an option" }} ``` ## Tests ```js npm install npm test # open localhost:3000 ``` Tests are written in qunit, and were borrowed from `Ember.Select`. I've rewritten many of them, but most of them still fail. This is due to the nature of this component. `Selectize`'s tests assures that everything is ok between Selectize<->DOM. `Ember.Select`'s tests also test the DOM. This is unecessary in this project. Ember-selectize tests should be focused between Ember<->Selectize. **There is still much to do here.**