Hi Roy,
I think this has been requested to you before, but let me still ask you this. I have similar requirement but need to display till 3 or higher levels. I have taken the above example & tried putting the following code:
For 3-levels:
<ul>
<nav:iterateInitialNavNodes>
<li id='l0'>
<nav:navNodeAnchor navigationMethod="byEPCM" />
<nav:ifNavNodeHasChildren>
<ul>
<nav:iterateNavNodeChildren>
<nav:ifNavNodeHasChildren>
<li id='l1'>
<nav:navNodeAnchor navigationMethod="byEPCM" />
<ul>
<nav:iterateNavNodeChildren>
<li id='l2'>
<nav:navNodeAnchor navigationMethod="byEPCM"/>
</li>
</nav:iterateNavNodeChildren>
</ul>.
</li>
</nav:ifNavNodeHasChildren>
<nav:ifNotNavNodeHasChildren>
<li id='l3'>
<nav:navNodeAnchor navigationMethod="byEPCM"/>
</li>
</nav:ifNotNavNodeHasChildren>
</nav:iterateNavNodeChildren>
</ul>
</nav:ifNavNodeHasChildren>
</li>
</nav:iterateInitialNavNodes>
</ul>
But all i get it behavior of the TLN, even though I have followed similar steps that have been mentioned by you and Saar, could you please point me in right direction and help in resolving this.
Thanks,
Sumant