Note that there are some explanatory texts on larger screens.

plurals
  1. POtable between rows of another table
    primarykey
    data
    text
    <p>I am trying to put a table between rows of another table .</p> <p>But after I put a table after several rows , the original rows are lost their format .</p> <p>Any idea how to fix this issue . My knowledge of xslt is little bit limited .</p> <pre><code>&lt;table border="1"&gt; &lt;tr bgcolor="#006699"&gt; &lt;th ALIGN="LEFT"&gt;PCB Barcode&lt;/th&gt; &lt;th ALIGN="LEFT"&gt;Date and Time&lt;/th&gt; &lt;th ALIGN="LEFT"&gt;ProductPWI&lt;/th&gt; &lt;th ALIGN="LEFT"&gt;Conveyor Speed&lt;/th&gt; &lt;/tr&gt; &lt;xsl:for-each select="GeneralReflowProcessReport/Results/GeneralReflowProcessReportEntry/PcbInfo/PcbInfoEntries/PcbInfoEntry"&gt; &lt;tr&gt; &lt;td style='padding:2px 100px 2px 2px'&gt;&lt;xsl:value-of select="PcbBarcode"/&gt;&lt;/td&gt; &lt;td style='padding:2px 20px 2px 2px'&gt;&lt;xsl:value-of select="ReflowTime"/&gt;&lt;/td&gt; &lt;td style='padding:2px 20px 2px 2px'&gt;&lt;xsl:value-of select="ProductPWI"/&gt;&lt;/td&gt; &lt;td style='padding:2px 20px 2px 2px'&gt;&lt;xsl:value-of select="ConveyorSpeed"/&gt;&lt;/td&gt; &lt;/tr&gt; &lt;xsl:if test="PcbStatistics/PcbStatisticsEntries"&gt; &lt;br/&gt; &lt;table border="1" &gt; &lt;tr bgcolor="#006699"&gt; &lt;th ALIGN="LEFT"&gt;Statistics Limits:&lt;/th&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td style='padding:2px 100px 2px 2px'&gt;&lt;xsl:value-of select="PcbStatistics/PcbStatisticsEntries/PcbStatisticsEntry/StatisticsName"/&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;br/&gt; &lt;/xsl:if&gt; &lt;/xsl:for-each&gt; &lt;/table&gt; </code></pre> <p><img src="https://i.stack.imgur.com/wOGAA.jpg" alt="enter image description here"></p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload