xsl-list
[Top] [All Lists]

Re: [xsl] Adding form elements captured from xml

2008-04-11 03:32:04

...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

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>