我将在每一行中分别显示tagcloud值。像列表一样
value1
value2
value3 ... ... ..
这是我的代码。每当我从列表中选择一个值时,显示列表也会被过滤。
此代码可在XPNIC中正常工作。在浏览器中,我遇到了上述问题。
<xp:section id="section2" header="Web" type="wide">
<xp:panel>
<xp:this.data>
<xp:dominoView var="view2" viewName="TagCloudActiveCategories" expandLevel="1">
</xp:dominoView>
</xp:this.data>
<xp:repeat id="repeat2" rows="30" value="#{view2}" indexVar="indexVar" var="rowData">
<xe:list id="list2" styleClass="lotusList">
<xp:link escape="true" id="link1" value="/allDocumentsByTag.xsp">
<xp:this.text><![CDATA[# {javascript:rowData.getColumnValues()[0];}]]></xp:this.text>
<xp:this.parameters>
<xp:parameter name="categoryFilter">
<xp:this.value><![CDATA[# {javascript:getComponent("link1").getText();}]]></xp:this.value>
</xp:parameter>
</xp:this.parameters>
<xp:eventHandler event="onclick" submit="true" refreshMode="norefresh"></xp:eventHandler>
</xp:link>
</xe:list>
</xp:repeat>
</xp:panel>
</xp:section>
答案 0 :(得分:1)
据我所知,您正在使用URL参数来过滤视图。 Xem上的 EVERY 视图数据源,甚至标签云的数据源都使用此参数。
将属性 ignoreRequestParams = true 添加到标签云视图中,这应该可以解决问题。
<xp:this.data>
<xp:dominoView var="view2" viewName="TagCloudActiveCategories" expandLevel="1" ignoreRequestParams="true">
</xp:dominoView>
</xp:this.data>