我是XSLT的新手。我有一个表,其中列数由用户根据需要动态确定。表中的最后一列允许用户添加新行和其他行转换。在显示时,我希望表的所有列都在表末尾,但该行转换列除外。有什么办法可以使我始终隐藏页面上显示的最后一列?
由于列数是动态的,因此我设置了一个名为count的变量,并获得了列数。然后,我使用获取了全部数据
我的XML代码:
<table id="table_name" class="tf-data-tables_var_cols" >
<thead>
<tr>
<th style="width: 20%;">Link(<span style="color: red;">Required</span>)</th>
<th style="width: 20%;">Categorty(<span style="color: red;">Required</span>)</th>
<th style="width: 20%;">Department</th>
<th style="width: 20%;">Class timings</th>
<th style="width: 20%;">Row Options</th>
</tr>
</thead>
<tbody>
<tr>
<td>Graduate Studies</td>
<td>Student Info</td>
<td>Graduates</td>
<td>Afternoon</td>
<td><form class="add_row" onsubmit="return addRow(this);"><input type="submit" value="Add Row Below" /></form><br /><form class="delete_row" onsubmit="return deleteRow(this);"><input type="submit" value="Delete Row" /></form><br /><form class="move_row" onsubmit="return moveRow(this, 'up');"><input type="submit" value="Move Up" /></form><br /><form class="move_row" onsubmit="return moveRow(this, 'down');"><input type="submit" value="Move Down" /></form></td>
</tr>
</tbody>
</table>
XSLT代码:
<xsl:template match="table[contains(@class, 'tf-data-tables_var_cols')]">
<xsl:variable name="count" select="count(./thead/tr/th)"/>
<table id='table_name'>
<xsl:apply-templates select="*" />
</table>
</xsl:template>
我得到完整的表以及最后一列作为输出。如何隐藏/删除最后一列?
Output I got 我要删除行选项
答案 0 :(得分:0)
要删除最后一列及其标题,并使其他所有内容保持原样,请执行以下操作:
XSLT 1.0
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<!-- identity transform -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="th[last()] | td[last()]"/>
</xsl:stylesheet>