use of WRAP=VIRTUAL
by kalai[ Edit ] 2008-04-30 20:32:39
When user types on my text field, the text does not wrap but scroll to the right side of the text field. This looks bad. To make the text wrap
Use WRAP="VIRTUAL" like this example:
<TEXTAREA NAME="ANAME" ROWS="5" COLS="56" WRAP="VIRTUAL"></TEXTAREA>
VIRTUAL means that anything that the user enter will be wrapped when it reaches the end of the allocated width of the text field. However, when the form is submitted, the wrapping will not be preserved. To preserve the wrapping, use WRAP="PHYSICAL"