Skip to content

Instantly share code, notes, and snippets.

@siva-sundar
Last active February 20, 2017 13:33
Show Gist options
  • Save siva-sundar/ac138d186c14368be2f7e5f4f31a55d0 to your computer and use it in GitHub Desktop.
Save siva-sundar/ac138d186c14368be2f7e5f4f31a55d0 to your computer and use it in GitHub Desktop.
template `calling set on undefined object`
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
//contact: {},
actions: {
contactNameDidChange() {
console.log(this.contact);
}
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
value is binded to <span style="color: red">contact.contactname</span> - but <span style="color: red">contact</span> is undefined in controller
<hr>
Enter name: {{input value=contact.contact_name input=(action 'contactNameDidChange')}}
<br><br>
<hr>
check console
{{outlet}}
<br>
<br>
{
"version": "0.11.0",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.10.2",
"ember-data": "2.11.0",
"ember-template-compiler": "2.10.2",
"ember-testing": "2.10.2"
},
"addons": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment