hello,
i've just tried to make a custom doctype. the result should be a page which gives some kind of overview about availible products, containing a list of teasers. if some would click on a teaser he should get linked to the detail information.
that all worked pretty well with the custom document type - thing and the documentation so far.
i made a new template page (ascx) with following code:
<cms:CMSDataList runat="server" ID="dlProdukte" ClassNames="foxLX.Produkt" OrderBy="TeaserTitle"
TransformationName="foxLX.Produkt.Preview" SelectedItemTransformationName="foxLX.Produkt.Default"
RepeatColumns="2" />
the masterpage contains the navigation:
<div id="navi_main"><cms:CMSListMenu ID="CMSListMenu1" runat="server" /></div>
the problem is now that logically only one page is shown in the navigation (the overview of all produkts).
how am i able to display the detailinformations (my custom doctype) in the navigation as submenu/sub-hierarchy?
is there an easy way achieving this or do i have to implement an own navigation-control? (the data is availible in the cms_tree - table)
thank you!!!