I have a form which is used by both Web and Notes client users. I hide some of the text fields from web and instead use textareas to allow web users enter multiple lines.
I use the following javascript onSubmit to transfer the text from textarea to the real fields:
document.forms[0].txt_sec1_contents.value = document.forms[0].txt_sec1_TA.value
The problem is if web user enters carriage returns, they are all removed when you open the document in Notes client. Although if Notes user enters carriage returns, they are displayed on the web textareas.
Can anybody help please?
Thanks
Basir