Hi Gurus,
I have implemented a custom field in textarea. When user enters multiple lines (press Enter), the field able to capture first line only, other lines are missing.
For eg, if typing:
123 - Press Enter
456 - Press Enter
789 - Press Enter
when the page is refreshed, the textarea left 123 only.
i tried using the following but even worse, the field dissapeared from the page.
<textarea name="mail-text:80[]" cols="80">`repeat with r in mail-text; write (r, "\r\n"); end`</textarea>
Appreciate your opinions.
Thanks.