I'm posting this here as it sounds like this is the correct thread. However, if not, I can repost this in the 3.1 beta thread.
I'm glad to see that we have the option to use best-practice when rendering Navigation Menus. However, I don't see how the design allows for this when using the new Skinning Objects.
I'd need to specify "custom attributes" as well as including an assembly?
<object id="dnnNAV" codetype="dotnetnuke/server" codebase="NAV">
<param name="ProviderName" value="DNNMenuNavigationProvider" />
<param name="CSSControl" value="dnnNav" />
<param name="RenderMode" value="UnorderedList" />
</object>
Here is the code from the .ascx file I would like to recreate
<%@ Register TagPrefix="dnn" Namespace="DotNetNuke.UI.Skins" Assembly="DotNetNuke" %>
...
<dnn:NAV runat="server" id="dnnNAV" ProviderName="DNNMenuNavigationProvider" CSSControl="dnnNav">
<customattributes>
<dnn:customattribute value="UnorderedList" name="RenderMode" />
</customattributes>
</dnn:NAV>