We have the following data.
row meID EI
1_______a______________a1
_______________________a2
_______________________a3
_______________________a4
2_______b______________b1
_______________________b2
3_______c______________c1
_______________________c2
I would like to use XSL to display the data in the fashion:
<row=1>
__<meID>a</meID>
____<EI>a1</EI>
____<EI>a2</EI>
____<EI>a3</EI>
____<EI>a4</EI>
</row>
<row=2>
__<meID>b</meID>
____<EI>b1</EI>
____<EI>b2</EI>
</row>
<row=3>
__<meID>c</meID>
____<EI>c1</EI>
____<EI>c2</EI>
</row>
Currently, I am only able to get the XSL to lump all the EIs together:
<row=1>
__<meID>a</meID>
____<EI>a1a2a3a4</EI>
</row>
What do I need to change in the XSL to make it display 4 rows of EI?
Thanks.
row meID EI
1_______a______________a1
_______________________a2
_______________________a3
_______________________a4
2_______b______________b1
_______________________b2
3_______c______________c1
_______________________c2
I would like to use XSL to display the data in the fashion:
<row=1>
__<meID>a</meID>
____<EI>a1</EI>
____<EI>a2</EI>
____<EI>a3</EI>
____<EI>a4</EI>
</row>
<row=2>
__<meID>b</meID>
____<EI>b1</EI>
____<EI>b2</EI>
</row>
<row=3>
__<meID>c</meID>
____<EI>c1</EI>
____<EI>c2</EI>
</row>
Currently, I am only able to get the XSL to lump all the EIs together:
<row=1>
__<meID>a</meID>
____<EI>a1a2a3a4</EI>
</row>
What do I need to change in the XSL to make it display 4 rows of EI?
Thanks.