I have an ASP.NET 4.0 based CMS where I use TinyMCE (3.4) through jQuery to edit a single text field.
In addition to this, I have several other text fields. There is also another DropDown list on the page that controls the Contenttype. This control has AutoPostback turned on and sets the visibility of the text fields associated with the selectes element.
As I want to keep checking after feedback, I configured TinyXML to use xml to serialize the content (encoding: "xml").
Now I have a problem when the postback from, for example, the DropDown List, transcodes the contents.
Init: "Hallo" 1st Postback: "<p>Hallo</p>" 2nd Postback: "<p><p>Hallo</p></p>"
I have included the source text area via css, and this seems to be a problem with the TinyMCS Save method. Does anyone have a solution how to fix this problem, maybe using the special save_callback on TinyMCE?
Christoph
source share