Home
Web CMS (TeamSite)
is maxlength ok with textarea
nico
In the manual i don't see the maxlength attribute available for the <textarea> instance is this correct?
Find more posts tagged with
Comments
Migrateduser
There is no maxlength for textarea tag. You can however, try to trick the browser by allowing a certain number of characters via the validation-regex attribute.
Example of limiting to 1000 characters (includes tags)
If you are using the browser interface: "^[\s\S]{1,1000}$"
If you are using the java interface: "(?s)^.{0,1000}$"
David M. Doggette
Independent Consultant