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]
Other format: [Raw text]

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


> 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


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