|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: putting value inside string
Didyoureadthexsltspecyet,
> i want to create a string like this in my xslt stylesheet
> 'SaleID=12345&customerID=45'
>
> the value of showID and customerID is taken from the xml
> <report>
> <customer>
> <ID>45</ID>
> </customer>
> ..
> ..
> <SaleID>12345</SaleID>
> ..
> ..
> </report>
>
> this string will go as an argument to a javascript function
> <a href="javascript:myfunc('Sales','sales=12345&cusromerID=45');"></a>
>
> I tried doing
>
> 'sales=<xsl:value-of select="SaleID"/>&customerID=<xsl:value-of
> select="customer/ID"/>'
Use ATVs <http://www.w3.org/TR/xslt#attribute-value-templates>.
<a href="javascript:myfunc('Sales','sales={SaleID}&cusromerID={customer/ID}');"></a>
or xsl:attribute <http://www.w3.org/TR/xslt#creating-attributes>
<a>
<xsl:attribute name="href">
<xsl:text/>javascript:myfunc('Sales','sales=<xsl:value-of select="SaleID"/>&customerID=<xsl:value-of select="customer/ID"/>');<xsl:text/>
</xsl:attribute>
</a>
Cheers,
Jarno - Neurotic Fish: Need
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








