当colspan出现错误时,无法生成Td宽度值xslt中出现宽度

时间:2018-05-26 05:18:26

标签: xml xslt

我有一个表和colgroup,我正在使用表td宽度形式的colgroup,这在表格的顶部提到。

我需要定义特定colgroup的td的宽度。对于Ex:对于表中的第二个td,宽度取自第二个colgroup。

工作正常。但是当在td中出现colspan时,它只占位置col宽度值。我希望当colspan出现时,它应该采用td宽度中的所有先前的col和。

输入

<?xml version="1.0" encoding="UTF-8"?>
<table size="s" orient="portrait" tablebodyrowalign="top" width="100">
  <colgroup>
    <col width="19%"/>
    <col width="6%"/>
    <col width="4%"/>
    <col width="9%"/>
    <col width="8%"/>
    <col width="3%"/>
    <col width="16%"/>
    <col width="4%"/>
    <col width="15%"/>
    <col width="2%"/>
    <col width="14%"/>
  </colgroup>
  <thead/>
  <tbody>
    <tr>
      <td colspan="5" align="center" valign="middle" fill="000080">
        <para style="TableBodyNoIndent">
          <emph type="Bold">Escrows and Reserves</emph>
          <emph type="Bold">
            <sup>(8)</sup>
          </emph>
        </para>
      </td>
      <td left="single" right="single" align="left" valign="top">
        <para style="TableBodyNoIndent"/>
      </td>
      <td colspan="5" left="single" top="single" right="single" bottom="single"
        align="center" valign="middle" fill="000080">
        <para style="TableBodyNoIndent">
          <emph type="Bold">Financial Information</emph>
          <emph type="Bold">
            <sup>(3)</sup>
          </emph>
        </para>
      </td>
    </tr>
  </tbody>
</table>

XSLT:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    exclude-result-prefixes="xs"
    version="2.0">
    <xsl:output method="xml" indent="yes"/>
   <xsl:strip-space elements="*"/>
   <xsl:template match="@*|node()">
       <xsl:copy>
           <xsl:apply-templates select="@*|node()"/>
       </xsl:copy>
   </xsl:template>
    <xsl:template match="table">
        <xsl:copy>
            <xsl:apply-templates/>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="tr">
        <xsl:copy>
            <xsl:apply-templates/>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="td">
        <xsl:copy>
        <xsl:attribute name="style">
            <xsl:variable name="pos">
                <xsl:number/>    
            </xsl:variable>

            <xsl:choose>
                <xsl:when test="preceding-sibling::td[@colspan]">
                    <xsl:if test="@fill">
                        <xsl:value-of select="concat('background-color: ','#',@fill, ';')"/>
                    </xsl:if>
                    <xsl:if test="@align">
                        <xsl:value-of select="concat('text-align:',@align,';')"/>
                    </xsl:if>
                    <xsl:value-of select="concat('width:', ancestor::table/colgroup/col[position() = preceding-sibling::td/@colspam +1]/@width, ';')"/>
                </xsl:when>
                <xsl:otherwise>
                    <xsl:if test="@fill">
                        <xsl:value-of select="concat('background-color: ','#',@fill, ';')"/>
                    </xsl:if>
                    <xsl:if test="@align">
                        <xsl:value-of select="concat('text-align:',@align,';')"/>
                    </xsl:if>
                    <xsl:value-of select="concat('width:', ancestor::table/colgroup/col[position() = $pos]/@width, ';')"/>  
                </xsl:otherwise>
            </xsl:choose>
        </xsl:attribute>
            <xsl:apply-templates/>
        </xsl:copy>
    </xsl:template>
</xsl:stylesheet>

我尝试将前面的td colspan值+ 1作为当前的td位置,但它生成空白td。请建议。

1 个答案:

答案 0 :(得分:1)

你可以定义一个变量来获取td考虑colspans的实际位置,就像这样

<xsl:variable name="colpos" 
              select="sum(preceding-sibling::td/@colspan) + count(preceding-sibling::td[not(@colspan)]) + 1" />

或者当您使用XSLT 2.0时,您可以像这样编写表达式...

<xsl:variable name="colpos" 
              select="sum(for $td in preceding-sibling::td return (if ($td/@colspan) then $td/@colspan else 1)) + 1" />

或者这......

<xsl:variable name="colpos" 
              select="sum(preceding-sibling::td/(if (@colspan) then number(@colspan) else 1)) + 1" />

所以,总结一下存在的colspans,并计算没有的colspans(实际上有一个colspan为1)。

然后你需要得到colgroup中cols的数量来总结,就像这样

<xsl:variable name="colspan" 
              select="if (@colspan) then number(@colspan) else 1" />

然后获取td的宽度,你可以做到这一点

 <xsl:value-of 
      select="concat('width:', 
                sum(ancestor::table/colgroup/col[position() ge $colpos and position() lt $colpos + $colspan]/number(replace(@width, '%', ''))), 
                '%;')"/>  

试试这个模板

<xsl:template match="td">
  <xsl:copy>
    <xsl:attribute name="style">
      <xsl:if test="@fill">
        <xsl:value-of select="concat('background-color: ','#',@fill, ';')"/>
      </xsl:if>
      <xsl:if test="@align">
        <xsl:value-of select="concat('text-align:',@align,';')"/>
      </xsl:if>
      <xsl:variable name="colpos" select="sum(preceding-sibling::td/@colspan) + count(preceding-sibling::td[not(@colspan)]) + 1" />
      <xsl:variable name="colspan" select="if (@colspan) then number(@colspan) else 1" />
      <xsl:value-of select="concat('width:', sum(ancestor::table/colgroup/col[position() ge $colpos and position() lt $colpos + $colspan]/number(replace(@width, '%', ''))), '%;')"/>  
    </xsl:attribute>
    <xsl:apply-templates/>
  </xsl:copy>
</xsl:template>