problem running in loop on 2 identical parameters.
hello
I have a problem with the out put file. I have an input file that include 2 identical class parameter
- <counter tid="110">
<display color="16" colorRGB="124" sortable="yes" sum-format="byte" avg-format="byte" />
<data class="statistic" type="float" dbcolumn="BYTES_READ" mandatory="no" func="SUM" collection-id="bytes-read" />
</counter>
- <counter tid="120">
<display color="17" colorRGB="125" sortable="yes" sum-format="byte" avg-format="byte" />
<data class="statistic" type="float" dbcolumn="BYTES_WRITE" mandatory="no" func="SUM" collection-id="bytes-write" />
</counter>
in the xsl file, I am running on each dbcolumn (which can be seen that it is different), and in the out put file, I get an out put of 2 captions answers that are as a string, which suppose to be different.
it can be seen that it is running the loop on each dbcolumn but in the different out put, it recieves the same caption for both the dbcolumns which it is suppose to be different for each
<element key="I3-BYTES_READ_BL" caption="7011170121" offset="" format="byte" color="16"/>
<element key="I3-BYTES_READ_BL_RL-GROUP" caption="7011170121" offset="" format="" color="16"/>
<element key="I3-BYTES_READ_BL_RL-GRAPH" caption="7011170121" offset="" format="graph" color="16"/>
<element key="I3-BYTES_READ_BL_RL-NUMBER" caption="7011170121" offset="" format="byte" color="16"/>
<element key="I3-BYTES_READ_BL_RL-STACK" caption="7011170121" offset="" format="stack-graph" color="16"/>
<element key="I3-BYTES_WRITE_BL" caption="7011170121" offset="" format="byte" color="17"/>
<element key="I3-BYTES_WRITE_BL_RL-GROUP" caption="7011170121" offset="" format="" color="17"/>
<element key="I3-BYTES_WRITE_BL_RL-GRAPH" caption="7011170121" offset="" format="graph" color="17"/>
<element key="I3-BYTES_WRITE_BL_RL-NUMBER" caption="7011170121" offset="" format="byte" color="17"/>
<element key="I3-BYTES_WRITE_BL_RL-STACK" caption="7011170121" offset="" format="stack-graph" color="17"/>
|