On my XPage I have a datasource defined which is a filtered view:
<xp:this.data>
<xp:dominoView var="viewItems" viewName="myTodoList">
<xp:this.categoryFilter><![CDATA[#{javascript:return sessionScope.get("userFilter");}]]></xp:this.categoryFilter>
</xp:dominoView>
</xp:this.data>
I want to display the data via a repeat control. But I want to display ALL the records in the data-set. How much I compute the xp:this.rows property?
<xp:repeat id="repeat1" value="#{viewItems}"
var="obj" indexVar="idx">
<xp:this.rows><![CDATA[#{javascript:getComponent("repeat1").getDataModel().getRowCount()}]]></xp:this.rows>
</xp:repeat>