Is there a way to add a pane to the DDR menu template in DNN? I tryed like this, but the asp controls dont get rendered:
<ul class="navigation">
[*>NODE-TOP]
</ul>
[>NODE-TOP]
<li class="[?NODE]hasDropdown [/?][?SELECTED]active[/?]">
[?ENABLED]
<a href="[=URL]" target="[=TARGET]">
<span>[=TEXT]</span> [?NODE][/?]
</a>
[?ELSE]
<a href="#" target="[=TARGET]">
<span>[=TEXT]</span> [?NODE][/?]
</a>
[/?]
<div class="pane" id="menu[=ID]Pane" runat="server"></div>
[?NODE]
<ul class="sub">
[*>NODE]
</ul>
[/?]
</li>
[/>]
Is there a workaround to place a "dynamic" pane with "menu item id" as name in the ddr menu?