Come together with the global Drupal community in Rotterdam, 28 Sept – 1 Oct 2026. Sessions, contribution, connection, and Early Bird savings until 8 June.
There are some conflicts with FCK editor at the moment.
FUpload needs a rewrite to work with FCK. So far, this issue won't be handled exclusively. I'm sorry.
I come up with a custom javascript to detach the editor when the fupload "save" button is clicked, this will convert the editor text back to the textarea before saving.
Please put the following code into your js file, and see if it helps.
Drupal.behaviors.fuploadDetachEditor = function(context) {
$('.wysiwyg:not(.wysiwyg-processed)', context).each(function() {
var params = Drupal.wysiwyg.getParams(this);
$('#startuploadbutton').click(function() {
// Detach any editor when the containing form is submitted.
Drupal.wysiwygDetach(context, params);
});
});
}
Comments
Comment #1
grandcat commentedThere are some conflicts with FCK editor at the moment.
FUpload needs a rewrite to work with FCK. So far, this issue won't be handled exclusively. I'm sorry.
Comment #2
Anonymous (not verified) commentedI come up with a custom javascript to detach the editor when the fupload "save" button is clicked, this will convert the editor text back to the textarea before saving.
Please put the following code into your js file, and see if it helps.