2

我创建了一个 DVWP 下拉列表,用于过滤我使用 DVWP 显示的列表。我已将年份列表设置为下拉 DVWP 数据源,在选择年份时,我想过滤列表 DVWP 以显示按年份过滤的项目。

下拉菜单:
<select name="ID" size="1" onchange="document.location.href='http://server/site.aspx' + '?' + 'year' + '=' + this.options[selectedIndex].value">

我添加了一个 QueryString 参数,该参数param1将其值从此Year下拉列表以及 DVWP 列表中获取。在 DVWP 列表中,我添加了一个过滤条件,即:Year equals [Param1]. 注意:这里的年份是一个计算列,它从日期字段中获取年份。
我的问题是,即使下拉列表在选择一个值后被回发,它也不会被过滤。我在这方面做错了什么?我一直在为此绞尽脑汁,但无论我尝试什么,我都无法让它发挥作用。请帮忙。

<xsl:template name="dvt_1">
            <xsl:variable name="dvt_StyleName">Table</xsl:variable>
            <xsl:variable name="Rows" select="/dsQueryResponse/Rows/Row"/>
            <xsl:variable name="dvt_FieldNameNoAtSign" select="substring-after($dvt_filterfield, '@')" />
            <xsl:variable name="dvt_FilteredRowsText" select="$Rows[.=$dvt_filterval or ($dvt_filtertype='date' and substring-before($dvt_filterval,'T') = substring-before(.,'T'))]" />
            <xsl:variable name="dvt_FilteredRows" select="$Rows[normalize-space(*[name()=$dvt_filterfield])=$dvt_filterval or ($dvt_filtertype='date' and substring-before($dvt_filterval,'T') = substring-before(normalize-space(*[name()=$dvt_filterfield]),'T'))]" />
            <xsl:variable name="dvt_FilteredRowsAttr" select="$Rows[normalize-space(@*[name()=$dvt_FieldNameNoAtSign])=$dvt_filterval or ($dvt_filtertype='date' and substring-before($dvt_filterval,'T') = substring-before(normalize-space(@*[name()=$dvt_FieldNameNoAtSign]),'T'))]" />
            <xsl:variable name="dvt_RowCount">
                <xsl:choose>
                    <xsl:when test="$dvt_adhocfiltermode != 'query' and $dvt_filterfield">
                        <xsl:choose>
                            <xsl:when test="starts-with($dvt_filterfield, '@')"><xsl:value-of select="count($dvt_FilteredRowsAttr)" /></xsl:when>
                            <xsl:when test="$dvt_filterfield = '.'"><xsl:value-of select="count($dvt_FilteredRowsText)" /></xsl:when>
                            <xsl:otherwise><xsl:value-of select="count($dvt_FilteredRows)" /></xsl:otherwise>
                        </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise><xsl:value-of select="count($Rows)" /></xsl:otherwise>
                </xsl:choose>
            </xsl:variable>
            <xsl:variable name="RowLimit" select="10" />
            <xsl:variable name="FirstRow" select="$dvt_firstrow" />
            <xsl:variable name="LastRow">
                <xsl:choose>
                    <xsl:when test="($FirstRow + $RowLimit - 1) &gt; $dvt_RowCount"><xsl:value-of select="$dvt_RowCount" /></xsl:when>
                    <xsl:otherwise><xsl:value-of select="$FirstRow + $RowLimit - 1" /></xsl:otherwise>
                </xsl:choose>
            </xsl:variable>
            <xsl:variable name="IsEmpty" select="$dvt_RowCount = 0 or $RowLimit = 0" />
            <xsl:variable name="dvt_IsEmpty" select="$dvt_RowCount = 0"/>
            <xsl:call-template name="dvt_1.toolbar">
                <xsl:with-param name="Rows" select="$Rows" />
            </xsl:call-template>
            <xsl:choose>
                <xsl:when test="$dvt_IsEmpty">
                    <xsl:call-template name="dvt_1.empty"/>
        </xsl:when>

这是你要找的吗?

嗯,如果这有帮助,在我用来填充下拉列表的列表中,“年份”字段有一个内部名称@Title。会不会跟这个有关系?
<xsl:template name="dvt_1.rowview"> <option> <xsl:value-of select="@Title" /> </option> </xsl:template> . 但它也有@Year,所以不确定哪个是哪个。
<td class="ms-vb"> <xsl:value-of select="@Year"/> </td>
糟糕,很抱歉造成混淆。第二个@Year是我创建的计算列。
更新 2:您要求的代码:

<td class="ms-toolbar" nowrap="nowrap">
                                <xsl:call-template name="dvt.filterfield">
                                    <xsl:with-param name="fieldname">@Year</xsl:with-param>

                                    <xsl:with-param name="fieldtitle">Year</xsl:with-param>

                                    <xsl:with-param name="Rows" select="$Rows" />

                                    <xsl:with-param name="fieldtype">text</xsl:with-param>

                                </xsl:call-template>

已经为这两个 dvwp 创建了这样的东西:
<xsl:param name="ListID">{6889CA36-79AC-4FA8-9F0A-C013C944B3C5}</xsl:param> <xsl:param name="Param1" />

4

2 回答 2

1

我刚刚注意到(感谢我的一位同事)Year计算列是一个字符串。因此,对于 2013 年,它将其存储为 2,013,因此我无法正确过滤 DVWP。我使用=TEXT(([columnname], "yyyy")而不是YEAR([colname])一切正常。

于 2013-01-23T13:19:17.970 回答
0

如果您的参数名称被称为param1,那么我相信您的下拉列表将需要将一个名为“param1”的查询字符串参数传递到 URL 而不是“年份”。您可以尝试将选择标签修改为这样吗?:

<select name="ID" size="1"
  onchange="document.location.href='http://server/site.aspx?param1=' 
  + this.options[selectedIndex].value">
于 2013-01-17T07:41:40.423 回答