@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