Subject:Printing values in a table or a board using two dimension positions . Author:the man with zest Date:06 Jun 2007 08:33 AM
Hello,
is there any elegant way to take two dimension positions from a XML file and generate a table with the values given using XSL?
the structure of the XML file goes like this:
/Level/DocLevel/Info/Sample/Request/Column
/Level/DocLevel/Info/Sample/Request/Row
/Level/DocLevel/Info/Sample/Request/Result
each Request holds the data and the positions - only the cells that contain some data.
the other cells of the table without the results need to be filled with NUll ( ).
if the table surrounded with the position indicators, for example the following:
<table border="1" width="80%">
<tr> <td> </td><td>1</td><td>2</td><td>3</td><td>4</td><td>5</td><td>6</td><td>7</td><td>8</td><td>9</td><td>10</td><td>11</td><td>12</td>
</tr>
<tr><td>A</td></tr>
<tr><td>B</td></tr>
<tr><td>C</td></tr>
<tr><td>D</td></tr>
<tr><td>E</td></tr>
<tr><td>F</td></tr>
<tr><td>G</td></tr>
<tr><td>H</td></tr>
</table>
how can i take the data from the XML and put it in the matching places?
Thanks in advance,
Zest