Hi all,
I created a short JSBIN to ouline my problem http://jsbin.com/bomulexaho/1/edit?html,js,console,output
What I want to accomplish:
- For each list entry have a link to the parent object
- Take some action when the add event for the list is triggered
I tried to use the init of the parent object for this, but the script fails as soon as it runs the lines
this.AS.parent=this;
this.AS.on(“add”, function() {console.log(“Event add”);})
Any suggestions how to resolv this?