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}}
link|improve this question

60% accept rate
@dhenze the link was useful, though the top answer uses a deprecated collection and the second answer returns the value and not the object. I created this fiddle link which returns the object BUT it goes via the index inside the select so i cant group them by types inside optgroups (my end goal) – Hayden Chambers Jan 18 at 21:25
feedback

3 Answers

up vote 14 down vote accepted

Ember now has a built-in Select view.

Here's a usage example:

var App = Ember.Application.create();

App.Person = Ember.Object.extend({
    id: null,
    firstName: null,
    lastName: null,

    fullName: function() {
        return this.get('firstName') + " " + this.get('lastName');
    }.property('firstName', 'lastName').cacheable()
});

App.selectedPersonController = Ember.Object.create({
    person: null
});

App.peopleController = Ember.ArrayController.create({
    content: [
        App.Person.create({id: 1, firstName: 'Yehuda', lastName: 'Katz'}),
        App.Person.create({id: 2, firstName: 'Tom', lastName: 'Dale'}),
        App.Person.create({id: 3, firstName: 'Peter', lastName: 'Wagenet'}),
        App.Person.create({id: 4, firstName: 'Erik', lastName: 'Bryn'})
    ]
});

Your template would look like:

{{view Ember.Select
       contentBinding="App.peopleController"
       selectionBinding="App.selectedPersonController.person"
       optionLabelPath="content.fullName"
       optionValuePath="content.id"}}

Again, here's a jsFiddle example: http://jsfiddle.net/ebryn/zgLCr/

link|improve this answer
2  
fantastic! hope these kind of examples get added to the emberjs site, it would make the learning process a whole lot less painful – Hayden Chambers Jan 19 at 8:27
something like that should definitely make it into the core - just like Em.Button – Michael Siebert Jan 19 at 12:15
feedback

check out the answers to a similar question: How to bind value form input select to attribute in controller

In the examples a CollectionView is used with an tagName=select. You may find this helpful in getting it work.

EDIT: Since I was looking to implement a select myself, here is the solution I came up with:

views/form.js.hjs:

{{#view contentBinding="App.typeController" valueBinding="type" tagName="select"}}
    {{#each content}}
        <option {{bindAttr value="title"}}>{{title}}</option>
    {{/each}}
{{/view}}
{{#view Ember.Button target="parentView" action="submitEntry"}}Save{{/view}}

The select is part of a form. I do check for the submit event and in there read the value:

app.js.coffee

# provides the select, add value: 'my_id' if you need differentiation
# between display name (title) and value
app.typeController = Ember.ArrayProxy.create
  content: [{title:'Energy'}, {title:'Gas'}, {title:'Water'}]

# simplified version, but should prove the point
app.form_view = Ember.View.create
  templateName: 'views_form'
  type: null
  submitEntry: () ->
    console.log this.$().find(":selected").val()

Hope this helps.

link|improve this answer
feedback

@skinneejoe: I think you could have posted a separate question for this rather than posting it in an "answer".

But anyway, did you try setting the value of App.selectedPersonController.person in the controller? I think in this case the view should just represent the state of your controller, so the controller would be the place to do it (or you could simply have a default value in your model if selectedPersonController proxies a model).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.