I've embedded a series of views into my document using the following code:
{{view App.View.PersonProfile.Name itemBinding="person"}}
And I'm using the following code for my main container view, and its two sub-views:
App.View.PersonProfile = Ember.ContainerView.extend(
{
tagName: 'a',
person: null,
childViews: ['Name', 'NameAvatar'],
click: function()
{
App.View.Window.Profile.create({ person: this.get('person') });
},
name: Ember.View.extend(
{
template: Ember.Handlebars.compile('{{ view.parentView.person.formalName }}')
}),
nameAvatar: Ember.View.extend(
{
template: Ember.Handlebars.compile
(
'<img class="avatar" {{bindAttr src="view.parentView.person.avatar"}} />' +
'<div class="name">{{ view.parentView.person.formalName }}</div>'
)
})
});
However, when I run the script, "App.View.PersonProfile.Name" apparently cannot be found. Is this expected behaviour? And if so, what is the solution? Is it better to extend the PersonProfile abstract?