Using the Kentico CMS environment (version 7), how could multiple CMS relays be nested?
I tried the following, which binds the parent, but how could you then bind them to them?
<cms:CMSRepeater ID="repProducts" runat="server" ClassNames="cms.product" OrderBy="NodeLevel,NodeOrder" SelectOnlyPublished="true" MaxRelativeLevel="1"> <ItemTemplate> <%# Eval("DocumentName")%> <ul> <li> <cms:CMSRepeater ID="repProductsNested" runat="server" ClassNames="cms.product" OrderBy="NodeLevel,NodeOrder" SelectOnlyPublished="true" MaxRelativeLevel="1" Path="./%"> <HeaderTemplate> <ul> </HeaderTemplate> <ItemTemplate> <li><%# Eval("DocumentName")%> </ItemTemplate> </cms:CMSRepeater> <FooterTemplate> </ul> </FooterTemplate> </li> </ul> </ItemTemplate> </cms:CMSRepeater>
user2440843
source share