Quantcast
Channel: Ember.JS - Latest topics
Viewing all articles
Browse latest Browse all 4828

Select tag using Ember

$
0
0

@chani wrote:

{{#if view.vehicle}} Vehicle TYpe
{{view view.Select multiple=“true” class=“model” name="vehicleList" contentBinding="view.vehicleModel" optionLabelPath="content.itemLabel" optionValuePath="content.itemValue" selectionBinding=“view.vehicleType”}}

{{/if}}

By doing as above am not able to select multiple using shift+arrow in IE10 and IE11 so am trying to change as below

{{#if view.vehicle}} Vehicle TYpe
{{#each view.vehicleModel}} <option value="{{itemValue}}" selected={{if isSelected ‘selected’}}>{{itemLabel}} {{/each}}

{{/if}}

How the selectionBinding can be done in secondcase?

Posts: 1

Participants: 1

Read full topic


Viewing all articles
Browse latest Browse all 4828

Trending Articles