I am using CKEditor, jQuery and jQuery form plugin and I would like to submit contents of the CkEditor form via an Ajax query. Here is my code:

<form id="article-form" name="article-form" method="post" action="/myproject/save">
  <textarea name="bodyText" style="visibility: hidden; display: none;"></textarea>
  <script type="text/javascript">
    CKEDITOR.replace('bodyText');
  </script>

  <a onClick="$("#article-form").ajaxSubmit();">Submit</a>

</form>

Unfortunately, it seems that the Ajax request does not pass the bodyText parameter;

What did I do wrong or how can I achieve what I need?

Thank you.

link|improve this question

72% accept rate
feedback

4 Answers

up vote 9 down vote accepted

you need to first call the following, to make the CKEDITORs update their related fields..

for ( instance in CKEDITOR.instances )
    CKEDITOR.instances[instance].updateElement();

so

HTML

<a onClick="CKupdate();$("#article-form").ajaxSubmit();">Submit</a>

and javascript

function CKupdate(){
    for ( instance in CKEDITOR.instances )
        CKEDITOR.instances[instance].updateElement();
}
link|improve this answer
Thank you. Where do I need to place this call : before CKEDITOR.replace or before ajaxSubmit() ? – fabien7474 Jul 15 '10 at 14:34
@fabien, updated answer – Gaby aka G. Petrioli Jul 15 '10 at 14:34
Ok. It works when placed before ajaxSubmit(). Thank you very much – fabien7474 Jul 15 '10 at 14:36
@fabien, i believe your CKEDITOR.replace should have as parameter the name of the textarea and not the ID of the form .. so it should be CKEDITOR.replace('bodyText') – Gaby aka G. Petrioli Jul 15 '10 at 14:37
@Gaby. Yes. You are right. I have updated the question – fabien7474 Jul 15 '10 at 14:43
show 1 more comment
feedback

If you use the jQuery form plugin, you can use the beforeSubmit option for a more elegant solution:

formOptions = 
{
    beforeSubmit:  function()
    {
        /* Before submit */
        for ( instance in CKEDITOR.instances )
        {
            CKEDITOR.instances[instance].updateElement();
        }
    },

    // ... other options
};
$("#form").ajaxForm(formOptions);
link|improve this answer
feedback

I just did it like this:

$('#MyTextArea').closest('form').submit(CKupdate);

        function CKupdate() {
            for (instance in CKEDITOR.instances)
                CKEDITOR.instances[instance].updateElement();
            return true;
        }
link|improve this answer
feedback

This works for me best: beforeSerialize callback

$('form#description').ajaxForm({
    beforeSerialize:function($Form, options){
        /* Before serialize */
        for ( instance in CKEDITOR.instances ) {
            CKEDITOR.instances[instance].updateElement();
        }
        return true; 
    },
    dataType: 'json'
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.