How can I test for no entry in an RTF field?
The test ... if (input.RTF1 != "")
will not evaluate as false when RTF is left blank.
The test ... if (input.RTF1.length() > 0)
will not evaluate as false when RTF is left blank.
No matter what I try, a Rich Text Field will not let me process ONLY if it has user entered content. It always passes the tests i try to apply and acts as if there is data in the control.
What I am left with is entering some generic data such as "n/a" and then testing if the field equals that generic data and using that to indicate no user data has been entered.
Can anyone tell me how to test an RTF for a blank value?
~Steve