I am attempting to use the ember-cli to create a select list that is generated dynamically based on a list of items. The list is populated (the <select><options...></select> are correctly in place), but the actual view does not display items in the dropdown.
Here is an example of my use:
{{#ember-chosen prompt="Select Assignment"}}
{{#each assignment in model.assignments}}
<option {{bind-attr value="assignment.description"}}>{{assignment.description}}</option>
{{/each}}
{{/ember-chosen}}
I am attempting to use the ember-cli to create a select list that is generated dynamically based on a list of items. The list is populated (the
<select><options...></select>are correctly in place), but the actual view does not display items in the dropdown.Here is an example of my use: