我正在尝试使用 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>
目前只显示标题。有人可以指出我做错了什么吗?
提前致谢