Subject: Re: Adding form elements captured from xml
From: "Aaron Johnson" <artpunx@xxxxxxxxx>
Date: Fri, 11 Apr 2008 12:31:33 +0100
|
Hi David...
Of course! it didn't occur to me to add an attribute call.....
Thanks for that
Aaron
On Fri, Apr 11, 2008 at 11:30 AM, David Carlisle <davidc@xxxxxxxxx> wrote:
>
> > ...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
|