Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a number of xml files from which I'm trying to create a WordML table. There are a number of nodes in each nodelist, and I need to create a column for each one, up to a maximum of 15 columns. However, if there are less than 15, the columns need to be justified.

Template called NodeList:

<xsl:template match="NodeList">
<xsl:for-each select="NodeRef">
<xsl:sort data-type="number" select="@Position" order="ascending"/>
<xsl:sort data-type="text" select="@Name" order="ascending"/>
<xsl:variable name="documentName" select="concat(@Id, '_Nodes.xml')"/>
<xsl:apply-templates mode="SimpleNode" select="document($documentName)/Node"/>
</xsl:for-each>
</xsl:template>

Template called SimpleNode:

<xsl:template mode="SimpleNode" match="Node">
<!-- Output the Node Table - as template within for-each, 
will output table many times   -->
<xsl:call-template name="SimpleNodeTable"/>
</xsl:template>

SimpleNodeTable template (where I'm stuck):

<xsl:template name="SimpleNodeTable">
<w:tbl>
  <w:tblPr>
    <w:tblStyle w:val="ReportTable1"/>
    <w:tblW w:type="dxa">
      <xsl:attribute name="w:w">
        <xsl:value-of select="$landscapeBodyWidth"/>
      </xsl:attribute>
    </w:tblW>
    <w:tblLayout w:type="Fixed"/>
  </w:tblPr>
  <w:tblGrid>
    <w:gridCol>
      <xsl:attribute name="w:w">
        <xsl:value-of select="$nodeNameWidth"/>
      </xsl:attribute>
    </w:gridCol>
    <w:gridCol>
      <xsl:attribute name="w:w">
        <xsl:value-of select="$landscapeBodyWidth - $nodeNameWidth"/>
      </xsl:attribute>
    </w:gridCol>
  </w:tblGrid>
  <w:tr>
    <!-- first row -->
    <w:tc>
      <!-- First cell is blank so vertically merge -->
      <w:vmerge w:val="restart"/>
      <w:p/>
    </w:tc>
    <!-- HOW TO DO A FOR EACH LOOP TO ADD 1 COLUMN PER NODEREF?? -->
    <xsl:for-each select="Node">
    <w:tc>
      <w:p>
        <!-- Second cell contains the name of the node (from xml file) -->
        <w:t>
          <xsl:value-of select="NodeName"/>
        </w:t>
      </w:p>
    </w:tc>
    </xsl:for-each>
  </w:tr>
</w:tbl>
</xsl:template>

Perhaps I'm approaching this in a completely wrong way but I've ended up confusing myself with trying to get 1 table and then starting the for-each loop. I'd be grateful for any advice/guidance.

share|improve this question
Shouldn't your w:tblGrid structure contain as many w:gridCol items as the Maximum number of Nodelist nodes in the Source XML Files? – collapsar Feb 22 at 7:10

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.