XSLT表的XML格式

时间:2016-08-29 17:38:20

标签: xml xslt

我有这种格式的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>

0 个答案:

没有答案