I need to display a xml node attribute value in a cell. How can I do it using the xmlmap?
I have XML like:
<rows>
<row>
<cell1 attribute1="Arun Boppudi" />
<cell2>2</cell2>
<cell3>3</cell3>
<cell4>4</cell4>
</row>
..........
</rows>
In the table's first cells I need to display
Arun Boppudi, 2, 3, 4
values respectively.

