I am facing issue in getting updated value in the view. I think valueBinding is not working
<script type="text/x-handlebars" >
{{#view App.Test }}
<label>Name:</label>
{{view Ember.TextField placeholder="username" valueBinding="view.name"}} </br> </br>
{{/view}}
</script>
App.Test = Ember.View.extend({
name: null,
submit: function(event) {
// event.preventDefault();
console.log(this.get('name'));
}
})
When submit function called, console.log(this.get('name')); allways shows NULL value, even though value is typed in the textfiled.