newtonik schrieb:
Hey, Has anyone been able to figure out a way to use the FCKEditor in a ajax form
submission. It seems like the data in the editor doesn't get assigned during
a ajax submit. This prevents me using formzone when I have fckeditors
textarea. Has anyone worked around this issue?  Thanks.


Newton

There is event provided by fckeditor to ensure that the editor value is synchronized with the input field.

Here is a jquery snippet
$j("form.evaluateForm").bind('form-pre-serialize', function() {
                var e = FCKeditorAPI.GetInstance('comment') ;
                e.UpdateLinkedField();
        });


--
Best Regards / Viele Grüße

Sebastian Hennebrueder
-----
Software Developer and Trainer for Hibernate / Java Persistence
http://www.laliluna.de



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to