Sometimes what you need is just a hair’s breath away. For example you are trying to implement a css theme down to the tiniest detail and you have to fight with what XPages normally outputs in some cases: in this very specific one I needed to give more padding to an input control when displayed […]
Month: December 2016
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” […]