Thanks.
I dont use a javascript. I just use a form element. Here is the code:
<input type ="button" name = "test" value = "¿Confirmar"/>
When this is run, the screen displays it as %bfConfirmar
I also tried an alternate:
Screen1.xsl: i defined the label
<xsl:template name="labelConfirm">¿Confirmar</xsl:template>
Screen2.xsl: I called the label name from Screen1.xsl
<xsl:with-param name="text"><xsl:call-template name="labelConfirm"/></xsl:with-param>
Still i get the same result.
Quote:
quote:Originally posted by mhkay
It's easier to debug people's code when they show you the code...
My guess is you are including Javascript code within an HTML attribute that's designed to hold a URI. Instead of putting code in "href" attributes, put it in "onClick" where it belongs. Non-ascii characters in URI values will always be escaped using the %HH convention, which you don't want in Javascript code.
Michael Kay
http://www.saxonica.com/
Author, XSLT 2.0 and XPath 2.0 Programmer's Reference
|