I am working on my first Ember app and I have the following problem. My UI is constructed in the following way:
<script type="text/x-handlebars" data-template-name="application">
{{outlet body}}
{{outlet popup}}
</script>
Then 'body' gets connected to the following template:
<script type="text/x-handlebars" data-template-name="tabs">
<div id="main_tabs">
<ul>
<li><a href="#tabs-1">Tab #1</a></li>
<li><a href="#tabs-2">Tab #2</a></li>
</ul>
<div id="tabs-1">
Tab #1 content goes here
</div>
<div id="tabs-2">
{{view SN.Tab2View controllerBinding="SN.tab2Controller"}}
</div>
</div>
</script>
The embedded view has a button that opens a popup like this:
<script type="text/x-handlebars" data-template-name="Tab2">
<br/>
<button type="button" {{action addDocument target="controller"}}>Add New Document</button>
<br/><br/>
Tab #2 content goes here
</script>
Unfortunately I didn't manage to run this sample at jsfiddle so the full working sample is published here http://www.follow-nature.com/jsfiddle/sn.html
The steps to recreate the problem are:
- Open the URL. A login popup appears.
- Click on 'Login' (no need to enter any username/password). Tabs widget appears.
- Click on 'Add New Document'. Add New Document popup appears.
- Click on 'Cancel'. The Add New Document popup disappears.
- Hover over 'Add New Document' button.
PROBLEM: Ember breaks with 'action is undefined' error.
I am not sure if this is a problem in the framework itself i.e. Ember or if I miss something and I create my UI in a wrong way.
Any help is more than welcome. Thanks!