1

我正在尝试使用 XSLT 创建列表视图 Web 部件的自定义显示。我已链接到一个 xsl 文件并使用以下代码填充它:

<xsl:stylesheet 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" xmlns:o="urn:schemas-microsoft-com:office:office">    
<xsl:template match="/">
    <table class="ms-listviewtable" cellspacing="0" cellpadding="1" width="100%" border="0">     
        <thead>
           <th class="ms-vh2">Title</th>
           <th class="ms-vh2">Status</th>
           <th class="ms-vh2">Percent Complete</th>
        </thead>      
    </table>
</xsl:template>
<xsl:template match="Row">
    <tr>
        <td> 
            <xsl:value-of select="@Title"/> 
        </td> 
        <td> 
            <xsl:value-of select="@Status"/> 
        </td> 
        <td> 
            <xsl:value-of select="@PercentComplete"/> 
        </td> 
    </tr>
</xsl:template>

目前只显示标题。有人可以指出我做错了什么吗?

提前致谢

4

1 回答 1

4

您需要调用您的Row模板。在编码方面,您实际上拥有一个从未被 Main 调用的 Row 方法。

尝试将xsl:apply-templates添加到您的根模板:

<xsl:template match="/">
    <table class="ms-listviewtable" cellspacing="0" cellpadding="1" width="100%" border="0">     
        <thead>
           <th class="ms-vh2">Title</th>
           <th class="ms-vh2">Status</th>
           <th class="ms-vh2">Percent Complete</th>
        </thead>
        <xsl:apply-templates select="/dsQueryResponse/Rows/Row"/>
    </table>
</xsl:template>
于 2012-05-17T12:35:05.547 回答