| Author |
Unable to show data using XSL
|
Hemanth Pallavajula
Ranch Hand
Joined: Oct 07, 2004
Posts: 38
|
|
hi Friends, I am new to XSL, and in fact, the doubt I am asking here is related to my first program. The XSL file(sample.xsl) is: And my XML file is :- I am able to get the heading in the table, but not able to see data. Please help me in solving this issue. [ March 16, 2005: Message edited by: Hemanth Pallavajula ]
|
Cheers,<br />Hemanth...<br />(When opportunity doesn't knock, build a door.)
|
 |
Hasan Pasha
Greenhorn
Joined: Feb 23, 2005
Posts: 25
|
|
You need to check how to use xsl:for-each element. Check out the tutorial at W3C Schools.
|
 |
Hemanth Pallavajula
Ranch Hand
Joined: Oct 07, 2004
Posts: 38
|
|
hi, Even after put this line, I am still getting the same problem. <xsl:for-each select="catalog/cd"> What needs to be done..??
|
 |
JayaSiji Gopal
Ranch Hand
Joined: Sep 27, 2004
Posts: 303
|
|
try this: <xsl:for-each select="//cd"> <xsl:value-of select="title"/> <xsl:value-of select="some other tag"/> </xsl:for-each>
|
SCJP 1.4, SCWCD 1.4<br /> <br />Thanks in advance!<br />Jayashree.
|
 |
Hemanth Pallavajula
Ranch Hand
Joined: Oct 07, 2004
Posts: 38
|
|
hi Jayashree, I was unable to get output even after trying your approach. I am unable to know what to do. Please help me.
|
 |
 |
|
|
subject: Unable to show data using XSL
|
|
|