I have a custom-written CMS that uses CKEditor *(FCKEditor v3) for editing content. I'm also using the jQuery Validation plugin to check all fields for error prior to AJAX-based submission. I'm using the serialize() function to passing the data to the PHP backend.
Problem is, serialize manages to grab all fields correctly, except for the actual content typed in CKEditor. Like every other WYSIWYG editor, this one too overlays an iframe over an existing textbox. And serialize ignores the iframe and looks only into the textbox for content, which, of course, it doesn't find, thus returning a blank content body.
My approach to this is to create a hook onto the onchange event of CKEditor and concurrently update the textbox (CKEDITOR.instances.[textboxname].getData()
returns the content) or some other hidden field with any changes made in the editor.
However, since CKEditor is still in it's beta stage and severely lacks documentation, I can't find a suitable API call that'll enable me to do so.
Does anyone have any idea on how to go about this?
I had success with this:
Wouldn't it be better to do just this:
ref: http://cksource.com/forums/viewtopic.php?f=11&t=18286
I took a slightly different approach I figured it would be better to use ckeditor's update function and since keyup was being used the timeout wasn't needed
Another generic solutions to this would be to run the following whenever you try to submit the form
This will force all CKEDITOR instances in the form to update their respective fields
I've been trying all night to get this to work but it isn't working yet. Could you please explain where you placed this script?
I am generating my page from an xquery so I can't put this script in the page because it contains "{" which breaks the xquery processing. Putting the script in cdata breaks the script. So I put the on
instanceReady
listener in the same script that is creating the editor and called an external script to add the rest. eg:then
updateInstance
contains:The contentDom event worked for me and not the instanceReady... I would really like to know what the events ae, but I assume they are proprietary...