私は emberjs を初めて使用し、マークアップで 2 つの異なるスクリプト タグを使用して 2 つのビューをレンダリングしようとしましたが、後者のビューのみがレンダリングされます。
HTML:
<script type="text/x-handlebars">
{{view Ember.Select
contentBinding="App.peopleController"
selectionBinding="App.selectedPersonController.person"
optionLabelPath="content.fullName"
optionValuePath="content.id"}}
<p>Selected: {{App.selectedPersonController.person.fullName}}
(ID: {{App.selectedPersonController.person.id}})</p>
</script>
<script type="text/x-handlebars">
{{#view Ember.Checkbox}}
Check me!
{{/view}}
</script>
ここでもフィドルを作成しました:jsfiddle
この場合、チェック ボックスは表示されますが、ドロップダウンの選択ビューは表示されません。