I'm new to Orchard, so I probably have no idea what I'm doing.

I've figured out how to override different shapes but putting a cshtml file in the View folder with the same name as the shape.

Also, I found the Menu and MenuItem shape cshtml files under the Core Orchard files.

However, I don't see a shape named Navigation and I don't really understand how Zones work.

I searched the code and couldn't figure out exactly how the Navigation is rendered, though I did find some of the code.

The reason that I want to override the Navigation rendering is that it renders a DIV and a NAV tag around the UL. I would prefer to just render the NAV and UL.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Zones are also shapes, but they are declared in code (Core/Shapes/CoreShapes.cs), not in .cshtml files like most of shapes. Also, there is no shape called Navigation, as zones are created dynamically at runtime - names of those are provided by the theme used.

Zones have default alternates in the form Zone__[ZoneName]. It means you just need to put Zone-Navigation.cshtml file in /Views folder in your theme folder to override Navigation zone rendering.

link|improve this answer
thanks. That worked, but I don't how to render the menu shape with the navigation data or how to access the navigation data in order to build the menu myself. Calling @Display(Model.Menu) doesn't work. – Zack May 30 '11 at 0:54
1  
Menu (which render the 'nav' element) and MenuItem (which renders a single item) are shapes, so you can override them by placing a Menu.cshtml and/or MenuItem.cshtml files in your theme /View folder. Take a look at how the default ones are rendered - you can find them in Core/Shapes/Views folder. BTW - @Display() method is used to render a shape object (and such should be provided). If you need to render the zone contents by hand - cast a Model (which holds current zone shape object) to IEnumerable<dynamic> and call Display(item) for each item. – Piotr Szmyd May 30 '11 at 2:42
For clarification: Each shape object (which is available inside .cshtml file as Model property) implements an IEnumerable<dynamic> interface and can contain other, child shapes (eg. the menu shape in Navigation zone). That's why you can freely cast it to IEnumerable<dynamic> and access children (if any) in foreach loop. – Piotr Szmyd May 30 '11 at 2:48
That's interesting and I didn't know that. Still not sure I completly understand it, but Menu.cshtml and MenuItem.cshtml actually do what I want already. I would only want to override them if I couldn't achieve the change that I want in the Navigation. The real problem is that as Navigation is rendered now, it renders a DIV that surrounds all of the contents, which I don't want. I can override Navigation using Zone-Navigation.cshtml like you suggested, but now I don't know how to get Menu.cshtml to render properly. I tried calling @Display(Model.Menu) but nothing gets rendered at all. – Zack May 30 '11 at 15:48
1  
Glad you made it work! @DisplayChildren method is declared on Orchard.Mvc.ViewEngines.Razor.WebViewPage object. It just loops over the shape and call Display(...) for each object. Shapes are dynamic and most of their properties are added at runtime, so there's not much you can see in debugger, unfortunately. Menu shape is created and added to Navigation zone in Orchard.UI.Navigation.MenuFilter class (lines 44-52). Items are fetched via INavigationManager.BuildMenu() method, call to which you can also see there. – Piotr Szmyd May 30 '11 at 17:06
show 3 more comments
feedback

If you are using the latest 1.1.3 release you can use the new shape tracing tool from the designer tools module. It provides a list of URL alternates to name your template in order to override the default rendering.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.