Assigning custom tag name to repeater

Generally you use a repeater to house table rows or list elements. It turns out though, that you aren’t given the possibility to define which tag output for it. In order to work around that I have seen solutions like this: <xp:repeat id=”repeat1″ rows=”30″ value=”#{view}” var=”row”> <xp:this.facets> <xp:text disableTheme=”true” xp:key=”header” escape=”false”> <xp:this.value><![CDATA[<ul>]]></xp:this.value> </xp:text> <xp:text disableTheme=”true” […]

Read More