I'm trying to produce a select input and pass the selected object to the change event on the view. The ember contact example uses a <ul> but with a select the view needs to be outside the each otherwise the change even isnt fired.
heres the view js
App.select_view = Ember.View.extend({
change: function(e) {
//event for select
var content = this.get('content');
console.log(content);
App.selected_widget_controller.set('content', [content]);
},
click: function(e) {
//event for ul
var content = this.get('content');
console.log(content);
App.selected_widget_controller.set('content', [content]);
}
});
the ul from the example works
<ul>
{{#each App.widget_controller.content}}
{{#view App.select_view contentBinding="this"}}
<li>{{content.name}}</li>
{{/view}}
{{/each}}
</ul>
but if I replace html directly, the change event isnt fired (which makes sense)
<select>
{{#each App.widget_controller.content}}
{{#view App.select_view contentBinding="this"}}
<option>{{content.name}}</option>
{{/view}}
{{/each}}
</select>
so i guess the select has to be wrapped in the view.. in which case how do i pass the relevant object?... this code results in the entire array being passed
{{#view App.select_view contentBinding="App.widget_controller.content"}}
<select>
{{#each App.widget_controller.content}}
<option>{{name}}</option>
{{/each}}
</select>
{{/view}}