|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] simple:xsl
Hai
I getting small problem
my problem is basing on the attribute value
I have to display things in different locations
I am trying like this but I am getting same output in different locations
can any one suggest a solution pl
My xml has
-----------------------------------------------------------------------
<Party stdValue="Supply">
<PartyID>AB1234</PartyID>
<PartyWGID>1005</PartyWGID>
<PartyContactID>1</PartyContactID>
<Ref stdValue="VAT">AB-123456789</Ref>
</Party>
<Party stdValue="Buyer"><PartyID/>
<Name>
<Name1>Len</Name1>
<Name2>CEO</Name2>
</Name>
<Street>
<Street1>Street</Street1>
</Street>
<PostalInfo>
<City>NJ</City>
<CountrySubEntity>USN</CountrySubEntity>
<PostalCode>123456</PostalCode>
<Country>US</Country>
</PostalInfo>
<Contact>
<TelNum>?12345</TelNum>
</Contact>
<Ref>CF-2345 ZXY</Ref>
</Party>
I have written XSL like This
---------------------------------------------------
<TD WIDTH="280" ALIGN="LEFT" VALIGN="TOP" COLSPAN="2"><FONT FACE="arial"
SIZE="2">
<xsl:choose>
<xsl:when test="Party[@stdValue='Supply']">
<xsl:apply-templates select="Party">
</xsl:when>
</xsl:choose>
</FONT></TD>
<!-- Buyer -->
<TD WIDTH="280" ALIGN="LEFT" VALIGN="TOP" COLSPAN="4"><FONT FACE="arial"
SIZE="2">
<xsl:choose>
<xsl:when test="Party[@stdValue='Buyer']">
<xsl:apply-templates select="Party"/>
</xsl:when>
</xsl:choose>
</FONT></TD>
And my template
-------------------------------------------------
<xsl:template match="Party">
<xsl:apply-templates select="Name"/><br/>
<xsl:apply-templates select="Street"/><br/>
<xsl:apply-templates select="PostalInfo"/><br/>
<xsl:value-of select="PartyID"/><br/>
<xsl:value-of select="PartyWGID"/><br/>
<xsl:value-of select="PartyContactID"/><br/>
<xsl:value-of select="Ref"/><br/>
</xsl:template>
Thanks ®ards
Lenin
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








