Christoffer Bruun schrieb am 20.12.2012 um 13:49 (+0100):
> Den 20-12-2012 13:47, lars.bjer...@swedbank.se skrev:

> ><xsl:param name="q1type" select="int" />
> >
> That won't work since select will try to evaluate int as an xpath query
> You should use:
> <xsl:param name="q1type">int</xsl:param>

Yes, but that would build an RTF (result tree fragment in XSL lingo),
and it's more efficient to use a simple string (note the quotes):

 <xsl:param name="q1type" select="'int'" />

Michael

Reply via email to