如何在SharePoint Designer 2007中的联接数据源上创建过滤的DataView

时间:2011-07-07 19:25:41

标签: join filter sharepoint-designer dataview

我正在尝试使用SharePoint Designer 2007为MOSS 2007创建过滤的DataView。以下简化示例演示了我要完成的任务。

假设我有两个列表:Colors和People。人员列表中有一个名为Favorite Color的查阅列,允许用户从颜色列表中进行选择。

我想创建一个只显示没人选择的颜色的DataView。

我已经成功创建了一个DataView,它显示了通过插入以下XSL代码选择该颜色的每种颜色和数字

<xsl:value-of select="count(/dsQueryResponse/People/Rows/Row[@Favorite_x0020_Color = current()/@Title])" />

我尝试将相同的逻辑应用于DataView查询,如下所示,但这仍然返回了所有行:

<xsl:variable name="Rows" select="/dsQueryResponse/Colors/Rows/Row[count(/dsQueryResponse/People/Rows/Row[@Favorite_x0020_Color = current()/@Title]) = 0]"/>

我认为上面的问题是在查询发生时,current()函数不起作用,因为没有当前行。所以我也尝试使用完整的参考,产生了相同的结果:

<xsl:variable name="Rows" select="/dsQueryResponse/Colors/Rows/Row[count(/dsQueryResponse/People/Rows/Row[@Favorite_x0020_Color = dsQueryResponse/Colors/Rows/Row/@Title]) = 0]"/>

是否可以使用XSL进行我想要的查询类型?如果是的话,我哪里出错了?完整的XSL如下:

<XSL><xsl:stylesheet xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:x="http://www.w3.org/2001/XMLSchema" xmlns:d="http://schemas.microsoft.com/sharepoint/dsp" version="1.0" exclude-result-prefixes="xsl msxsl ddwrt" xmlns:ddwrt="http://schemas.microsoft.com/WebParts/v2/DataView/runtime" xmlns:asp="http://schemas.microsoft.com/ASPNET/20" xmlns:__designer="http://schemas.microsoft.com/WebParts/v2/DataView/designer" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:SharePoint="Microsoft.SharePoint.WebControls" xmlns:ddwrt2="urn:frontpage:internal">
<xsl:output method="html" indent="no"/>
<xsl:decimal-format NaN=""/>
<xsl:param name="dvt_apos">'</xsl:param>
<xsl:variable name="dvt_1_automode">0</xsl:variable>
<xsl:template match="/">
    <xsl:call-template name="dvt_1"/>
</xsl:template>
<xsl:template name="dvt_1">
    <xsl:variable name="dvt_StyleName">Table</xsl:variable>
    <xsl:variable name="Rows" select="/dsQueryResponse/Colors/Rows/Row[count(/dsQueryResponse/People/Rows/Row[@Favorite_x0020_Color = dsQueryResponse/Colors/Rows/Row/@Title]) = 0]"/>
    <table border="0" width="100%" cellpadding="2" cellspacing="0">
    <tr valign="top">
    <xsl:if test="$dvt_1_automode = '1'" ddwrt:cf_ignore="1">
        <th class="ms-vh" width="1%" nowrap="nowrap"></th>
    </xsl:if>
        <th class="ms-vh" nowrap="nowrap">Color</th>
        <th class="ms-vh" nowrap="nowrap">Number of People</th>
    </tr>
    <xsl:call-template name="dvt_1.body">
        <xsl:with-param name="Rows" select="$Rows"/>
    </xsl:call-template>
    </table>
</xsl:template>
<xsl:template name="dvt_1.body">
    <xsl:param name="Rows"/>
    <xsl:for-each select="$Rows">
        <xsl:call-template name="dvt_1.rowview"/>
    </xsl:for-each>
</xsl:template>
<xsl:template name="dvt_1.rowview">
    <tr>
        <xsl:if test="position() mod 2 = 1">
            <xsl:attribute name="class">ms-alternating</xsl:attribute>
        </xsl:if>
        <xsl:if test="$dvt_1_automode = '1'" ddwrt:cf_ignore="1">
            <td class="ms-vb" width="1%" nowrap="nowrap">
                <span ddwrt:amkeyfield="" ddwrt:amkeyvalue="string($XPath)" ddwrt:ammode="view"></span>
            </td>
        </xsl:if>
        <td class="ms-vb">
            <xsl:value-of select="@Title"/>
        </td>
        <td class="ms-vb">
            <xsl:value-of select="count(/dsQueryResponse/People/Rows/Row[@Favorite_x0020_Color = current()/@Title])" />
        </td>
    </tr>
</xsl:template>

1 个答案:

答案 0 :(得分:1)

我实际上没有尝试过这个,但是如果基本上安德鲁建议做什么,首先循环遍历颜色列表。如果不符合条件,请不要显示该行。

   <xsl:variable name="Rows" select="/dsQueryResponse/Colors/Rows/Row"/>

然后

<xsl:template name="dvt_1.rowview">
<xsl:variable name="title" select="@Title" />
<xsl:if test="count(/dsQueryResponse/People/Rows/Row[@Favorite_x0020_Color = $title]) &gt; 0">
<tr>
    <xsl:if test="position() mod 2 = 1">
        <xsl:attribute name="class">ms-alternating</xsl:attribute>
    </xsl:if>
    <xsl:if test="$dvt_1_automode = '1'" ddwrt:cf_ignore="1">
        <td class="ms-vb" width="1%" nowrap="nowrap">
            <span ddwrt:amkeyfield="" ddwrt:amkeyvalue="string($XPath)" ddwrt:ammode="view"></span>
        </td>
    </xsl:if>
    <td class="ms-vb">
        <xsl:value-of select="@Title"/>
    </td>
    <td class="ms-vb">
        <xsl:value-of select="count(/dsQueryResponse/People/Rows/Row[@Favorite_x0020_Color = $title])" />
    </td>
</tr>
</xsl:if>
</xsl:template>