jangi wang 29.Feb.12 10:51 PM a Web browser Forms8.5.1 (Lotus Domino)Windows
We have a custom form(import HTML form) on QP6.5.1 and it's work fine,
the function just submit & save WYSIWYG richtext editor's value as HTML content.
For example,
I type the word '123' in WYSIWYG editor, it's store <p>123</p> in c_CustomField.
When the page in reading mode, we use javascript document.write(c_CustomField) to display the value.
In Quickr 8.5.1.25,
when the page submit & save, the content replace & encoded html tags to '<p>123</p>', so document.write(c_CustomField) show additional html tags on screen.
How can we force turn off this replace & convert?
if not, what is the better method to improve problem?
1. write some replace script in \qphtml\skins\quickr81\scripts\Quickr81_ext.js
2. update the custom form and add some script to encode the content '<p>123</p>' to '<p>123</p>'
(seems Quickr 8.5.1.25 do not encode the PageBody field)