[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] Adding form elements captured from xml


Subject: Re: [xsl] Adding form elements captured from xml
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 11 Apr 2008 11:30:51 +0100

> ...but you can't put the <xsl:for-each> elements inside the value=""
> because it's not valid code.

XSLt has to be well formed XML otherwise it will not get past the XML
parser and the XSLt engine will never start to execute it.


Don't go

<input value="<xsl:for-each


as putting < in an XML attribute makes the document not well formed.

go

<input>
<xsl:attribute name="value">
  <xsl:for-each



David


Current Thread
Keywords