http://modelglue.pastebin.com/d22e2ca16The template has the getView and the panel (passed in from MG config) has another getView. If I don't use the panel and put the code in the body.cfm, it works just fine. With the code in the panel it fails.
Is there a path issue when you get inside included templates? It reminds me of includes in includes in includes with normal CF (where the path isn't site root).
Event Type:
<event-type name="Global">
<after>
<views>
<include name="globalnav" template="global/globalnav.cfm"/>
<include name="utilities" template="global/utilities.cfm"/>
<include name="navsearch" template="global/navsearch.cfm"/>
<include name="quicksearch" template="global/quicksearch.cfm"/>
<include name="messagecenter" template="global/messagecenter.cfm"/>
<include name="footer" template="global/footer.cfm"/>
</views>
</after>
</event-type>
Handler:
<event-handler name="dashboard" type="Global,SecurePage,InteriorTemplate">
<views>
<include name="body" template="/pages/dashboard/body.cfm"/>
<include name="panel" template="/pages/dashboard/panel.cfm"/>
</views>
</event-handler>