On Jul 6, 2:36 pm, Arsalan <
ajam...@yahoo.com> wrote:
> I'm going through the practice material from the training and currently working on BizCom site. I've been able to understand most of the things but there is one thing that is driving me insane. I'm at a point where we create navigation structure (link) for the foundation page. I have followed the instructions step by step but for some reason I do not get any links on SmartEdit page. Rest of the page shows up fine. "Activate Navigation Manager" is selected in the project settings.
A couple things to check that aren't apparent from your screenshots.
In SmartTree, under Browse Navigation -> Project, have you defined
your navigation areas? From the looks of it, you need a navigation
area defined called "Navigation", and then some content classes
associated with it. I see your navigation structure (i.e. the list of
pages connected to each other) but I don't see that you have any
navigation areas defined so NavMgr knows how to build you menus.
Second, do you have navigation templates defined (and associated w/
your navigation areas)? At minimum you'd want something like this to
at least generate a link to the pages in your navigation:
<a href="<%!! Context:CurrentIndex.GetUrl() !!%>"><%!!
Context:CurrentIndex.Headline !!%></a>
Finally, in your template, are you emitting the navigation area?
Assuming your primary navigation area is called "Navigation" you'd
need this code somewhere in your template:
<%!! Navigation:OutputArea(Navigation) !!%>