I can display all my options value and labels when the view is not in the editable mode, the problem is that i can not achieve the same when the Ember Select View is in the editable mode.
Here the code in matter:
App.ThreadsController=Ember.ArrayController.extend({
selectContentTariffa: null,
selectContentTariffa: [
{label: "180", value: "180"},
{label: "200", value: "200"},
{label: "300", value: "300"}
],
in my view in Editable mode where i can not display the options
{{#if editable}}
<td>{{view Ember.Select prompt="Tariffa" content=selectContentTariffa optionValuePath="content.value" optionLabelPath="content.label" selectionBinding="selectContentTariffa" valueBinding="content.label"}}</td>
in my view when it's not editable and the options are displayed correctly
<td>{{view Ember.Select prompt="Tariffa" content=selectContentTariffa optionValuePath="content.value" optionLabelPath="content.label"}}</td>
Here a jsbin in action to reproduce the issue: http://jsbin.com/begopu/19/edit