RE: [xsl] Parsing xsl:variable into HTML

Subject: RE: [xsl] Parsing xsl:variable into HTML
From: "Jim Fuller" <jim.fuller@xxxxxxxxxxxxxxxxxx>
Date: Wed, 2 Jul 2003 11:35:07 +0100
> -----Original Message-----
> From: jan.soer@xxxxxxxxx [mailto:jan.soer@xxxxxxxxx]
> Sent: 02 July 2003 11:16
> To: XSL-List@xxxxxxxxxxxxxxxxxxxxxx
> Subject: [xsl] Parsing xsl:variable into HTML 

> How can I pass the value of a xsl:variable into the id of a checkbox?
> My code looks like this:
> 
> <xsl:variable name="CB_ID">
>      <xsl:value-of select = "ID"/>
> </xsl:variable> 
> <input type="checkbox" id="?????" onclick=""/>
> 
> ???? What do I need to fill in here to get the value of the 
> variable CB_ID?


you could use short hand, e.g. with curly brackets 

<input type="checkbox" id="{$CB_ID}" onclick=""/>

or explicitly create your attribute using xsl:attribute

gl, jim fuller
This e-mail and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you are not the intended recipient please contact the sender immediately. Any disclosure, copying, distribution or any other use of this communication is strictly prohibitedand may be unlawful. Stuart Lawrence Marketing Communications Limited reserves the right to monitor and intercept communications for unlawful business purposes.

This also confirms that this message has been swept for viruses, although Stuart Lawrence Marketing Communications Limited accepts no responsibility for any loss or damage resulting directly or indirectly from the use of this email or contents.

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread