Richtext field is not saved on the web

Hi all,

I’ve created a form for the web with 5 simple fields. One of the fields is RichText and uses a java applet to display. When I create a document with this form on the web first all looks fine. But for some reason the content of the richtext field is not saved (the normal fields are). Am I missing somehting?? or is this just ANOTHER bug of Lotus?

Subject: Richtext field is not saved on the web.

The problem you are having is that the Java applet is not part of the HTML form. You need to get the data from the applet first before you can submit. As with all things in Domino, the easy way is to use the Notes way (as Lisa suggested). You can also get the applet data using JavaScript (the method has been posted several times), but there’s really no way to beat @Formulas for any action that winds up with the document being submitted to the server.

Subject: Richtext field is not saved on the web.

I have created a similar document with a rich text field - all of the information is being saved, no problem.

I have a save button with @Command([FileSave])

and this takes care of everything.

Do you have different code?

Subject: RE: Richtext field is not saved on the web.

I use a document.forms[0].submit();

I will try the @Command. ty