This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Bringing XML values into an XSL multi line text box



Keddy, Paul wrote:

> This may be more of an html question? and probably a very simple one, but I
> was wondering:
> 
> I currently am bringing in values correctly from XML to XSL.  This displays
> fine but I would like the number value to be put into an input text box, and
> the severity into a multi line text box.  Any quick solutions?

this is how u would do input 

<input name="number">
<xsl:attribute name="value"><xsl:value-of select="error/number"/></xsl:attribute>
</input>

this is how u would do textarea.
		
<textarea name="severity">
<xsl:value-of select="error/severity"/>
</textarea>

this is relatively simple stuff, i would recc getting a book or reading 
faq  file ( http://www.dpawson.co.uk ).

cheers,jim fuller


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]