Re: [xsl] How do i specify maxlenght and size for an input box????

Subject: Re: [xsl] How do i specify maxlenght and size for an input box????
From: John Sands <WonkoWatson@xxxxxxxxx>
Date: Wed, 1 May 2002 07:16:17 -0400
> The size does'nt appear
> neither the maxlenght.
>   <xsl:attribute name="name">txtFaxofAddr</xsl:attribute>
>   <xsl:attribute name="maxlength">"3"</xsl:attribute>
>   <xsl:attribute name="size">"3"</xsl:attribute>

          
The double quotes around the values are not needed (the same way
you've done the name attribute):

    <xsl:attribute name="name">txtFaxofAddr</xsl:attribute>
    <xsl:attribute name="maxlength">3</xsl:attribute>
    <xsl:attribute name="size">3</xsl:attribute>

Hope this helps,
John


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


Current Thread