I have a simple app where you can login it looks like this:
{{#view App.mainV}}
{{#if logged}}
Hey!
{{else}}
<!-- Login form here when clicked: App.mainC.login()-->
{{/if}}
{{/view}}
Here is sample controller:
App.mainC = Ember.ArrayController.create({
login: function(){
if(ok)//Everything went fine
App.mainV.logged = true;
}
});
Here is mainV:
App.mainV = Ember.View.extend({
logged: false,
test: function()
{
console.log('JO');
}
});
I have two questions regarding this app:
- Why when I change logged to true view doesn't change?
If I call App.mainV.test() I get an error. Why?
TypeError: 'App.mainV.test' is not a function