ember-power-select-blockless
v0.5.0
Published
Blockess version of Ember Power Select
Downloads
1,629
Maintainers
Readme
Ember-power-select-blockless
Blockless version of Ember Power Select
Installation
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 as those in ember-power-select but with the addition of one new one, labelPath
. This
tells the component which attribute from options to use (to render each option of the list). That same attribute will also be the one rendered 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.