Xpages ViewPanel:覆盖展开链接

时间:2013-03-28 14:50:32

标签: view xpages

我有一个Xpage,在视图面板中显示分类视图。

我无法自定义类别的“链接”或“onclick事件”。 Domino总是使用expand函数覆盖它们,我不想这样做。

我试过了:

<xp:viewColumn columnName="productnumber"
    id="viewColumn2" styleClass="ViewcatFilter"
    collapsedImage="/spacer.jpg" expandedImage="/spacer.jpg">
    <xp:viewColumnHeader value="" id="viewColumnHeader2"
        sortable="false">
    </xp:viewColumnHeader>
    <xp:link id="link2">
        <xp:this.value>#</xp:this.value>
        <xp:this.text><![CDATA[#{javascript:myVar.getColumnValue("productnumber")}]]></xp:this.text>
        <xp:eventHandler event="onclick" submit="true"
            refreshMode="complete" immediate="false" save="true"
            id="eventHandler3">
            <xp:this.action><![CDATA[#{javascript:sessionScope.searchQuery = myVar.getColumnValue("productnumber")}]]></xp:this.action>
        </xp:eventHandler>
    </xp:link>
</xp:viewColumn>

1 个答案:

答案 0 :(得分:1)

看看这里:

XPages view control link manipulation

我假设您可以使用与“普通”列相同的方式操作分类列的链接。