0
votes

I have my backend that is a RichText field (without STORE MIME CONTENT)

If I input this field into Notes Client (compiling richtext field)

and after go in Xpages UI...I see HTML of the field correctly and I different scenario:

  • If I do not modify the field and Save the datasource...my backend is RichText normal
  • If I go into Ckeditor and insert a new word...and Save the datasource...my backend is RichText MIME
  • If I set my backend RichText field with the STORE MIME CONTENT....when I save new document the Xpages runtime go in a error

Have someone any idea to store my backend always with MIME or RICHTEXT?

Tnx

1

1 Answers

1
votes

Daniel,

  • If you don't modify the field in the XPage, it isn't send back to the server and remains untouched on the document. So if your original field contained richtext, it remains rich text.
  • If you edit the field in an XPage using CKEditor the contents will always be transformed to MIME (you get a warning upon saving that this will happen).

The "Store contents as MIME" setting will have the effect that the contents of documents created in the client will always be stored as MIME. Is that what you want?

Mark