Hello
We are using CKeditor 4.4.4 version. In our application we display a series of ckeditors stacked vertically. After the page is displayed/rendered, if we click through the ckeditor text without making any changes and observe our collection we see some changes to our collection. For example, if item.Name is the object associated to one of the text box. The value changes are as follows
Page render
item.Name = "<p> some text </p>"
click through the series of textbox
item.Name = "<p>some text</p>"
Altough the display is not impacted [not sure how] our user experience is impacted as the application dirty flag is turned on because of this change, which causes it to be different between the old and new value.
Why is the value being updated?
How do we prevent this update?
Thank you