シンプルなネストされたビューを作成しようとしています。「子」ビューは Ember.Select です。「選択」パラメーターは親から取得する必要があり、機能させることができません。どうやってこれを行うのですか?
<script type="text/x-handlebars" data-template-name="application">
{{view App.SelectView contentBindingForSelect="App.names"}}
</script>
<script type="text/x-handlebars" data-template-name="select-view">
<h1>In SelectView</h1>
{{view view.childSelectView contentBinding="view.contentBindingForSelect"}}
</script>
window.App = Ember.Application.create();
App.names = ["Yehuda", "Tom"];
App.ApplicationView = Ember.View.extend({
templateName: 'application',
});
App.SelectView = Ember.View.extend({
templateName: 'select-view',
childSelectView: Ember.Select
});
JSFiddle の例: http://jsfiddle.net/kRwcU/1/