This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: To pass parameters to function


> I'm tring to pass two params to this function
>
> 	function alignLeft(sValue,nSpaces)
> 	   alignLeft=left(sValue+space(nSpaces),nSpaces)
> 	end function
>
> in this way
>
> 	<xsl:variable name="sVal" select='XXXXX'/>
> 	<xsl:value-of select="xsl:alignLeft($sVal,10)"/>

Use select="'XXXXX'" if you want to pass a string; otherwise you are passing
a node-set containing the child elements named XXXXX.

Mike Kay


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]