Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<script type="text/x-handlebars" data-template-name="application"> 
{{view App.UiMenuView}}
{{view App.UiMainContainerView}}
{{outlet}}
</script>

<script type="text/x-handlebars" data-template-name="uiMainContainer">
<div id="uiMainContainer">
<div id="uiMainContainerSidebar">
{{#view App.SidebarView}}
<ul id="uiMainContainerSidebarList">
<li><a {{bindAttr href="view.tasksUrl"}}>Tasks</a></li>
<li><a {{bindAttr href="view.milestonesUrl"}}>Milestones</a></li>
<li><a {{bindAttr href="view.projectsUrl"}}>Projects</a></li>
<li><a {{bindAttr href="view.customersUrl"}}>Customers</a></li>
</ul>
{{/view}}
</div>
<div id="uiMainContainerContainer">{{outlet}}</div>
</div>
</script>  

I am wondering if there's a way to address the specifically the outlet from uiMainContainer? I tried something like:

test: Em.Route.extend({
            route: '/test',
            connectOutlets: function(router) {
                //router.get('applicationController').connectOutlet({ name: 'test' });
                router.get('uiMainContainerController').connectOutlet({ name: 'test'});
            }
        })  

This approach, however, seems to do nothing.

share|improve this question
1  
Could you post a more complete fiddle please ? Seeing your code here, this seems to be right. Just keep in mind that the hash passed to the connectOutlet is important (stackoverflow.com/questions/11832864/…), and if you miss something in the naming convention, nothing could be displayed – sly7_7 Aug 7 '12 at 7:51
@sly7_7 jsfiddle.net/6HCgz – Andrew Aug 7 '12 at 7:58
@sly7_7 I still couldn't figure out why it's not working. – Andrew Aug 7 '12 at 9:05
1  
I'm looking into that... but I'm at the office ^^ – sly7_7 Aug 7 '12 at 9:17
1  
It seems thaht you have to chain outlets, see: jsfiddle.net/Sly7/6HCgz/6 – sly7_7 Aug 7 '12 at 9:23

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.