/ember-power-select-blockless

Blockless version of ember-power-select

Primary LanguageJavaScriptMIT LicenseMIT

Ember-power-select-blockless

Blockless version of Ember Power Select

Instalation

ember install ember-power-select-blockless

Usage

This component uses internally ember-power-select, but uses the get helper to render an specific attribute in each item of the list.

All options are the same than those in ember-power-select with the addition of a new one, labelPath, which tells the component which attribute of each option should use to render each option of the list as well as the content of the trigger.

{{power-select-blockless options=users selected=user labelPath="name" onchange=(action (mut user))}}

Another refinement is that by default the searchField will default to the value in labelPath, so you don't need to specify it unless it's different.

When options is just an array of strings/numbers labelPath is not required.