Using Ember.Select, I am successfully rendering my dropdown menus
{{view Ember.Select
content=businessType.acceptableValues
optionLabelPath="content.name"
optionValuePath="content.value"
prompt=businessType.prompt
}}
The controller pulling the data from the model looks like:
businessType: function(){
var content = this.get('content');
return content.get(10);
}.property('content')
I can't figure out how to set the selected value. I have tried setting the value to content.value, I have tried selectionBinding=content.value, but nothing is working for me. What am I not understanding for this.
Thanks