Handle Bars Is below :- {{#each category in controller}}
{{view Ember.Select
contentBinding="App.testsController.content"
optionLabelPath="content.category"
selectionBinding="content.myVal"
}}
{{view Ember.Select
contentBinding="App.testsController.content"
optionLabelPath="content.type"
}}
{{view Ember.Select
contentBinding="App.testsController.content"
selectionBinding="content.myVal"
}}
controller is :-
App.TestsController = Ember.ArrayController.extend({
content: []
});
model is :-
App.Test = Ember.Object.extend(
category: null
type: null
#operands: null
#defaults: null
)
In the view I'm not able to get the value category and type. It is not displaying. How to fix the problem?