我有这种格式的xslt。我需要帮助确定应该从存储过程中返回xml的格式,这将适合这个xslt。
<xsl:for-each select="Type">
<tr class="{$css-class}">
<xsl:attribute name ="id">
<xsl:value-of select="./@TypeID"/>
</xsl:attribute>
<td class="TypeID">
<xsl:value-of select="./@TypeID"/>
</td>
<td class="TypeName">
<xsl:value-of select="./@TypeName"/>
</td>
<td>
<a title="Edit" href="#EditTypeModal" data-toggle="modal" onclick="editTypeonClick($(this))">
<xsl:attribute name="name">
<xsl:value-of select="./@TypeID"/>
</xsl:attribute>
<i class="icon-pencil"></i>
</a>
</td>
</tr>
</xsl:for-each>
到目前为止,我已尝试以下列格式返回xml,但它无效。请告知我错过了什么。
<DATA>
<Type id="1" TypeID="1" TypeName="abc" />
<Type id="2" TypeID="2" TypeName="def" />
<Type id="3" TypeID="3" TypeName="xys" />
</DATA>