Foren

Social Office CKEditor WYSIWYG HTML format missing re-sizeable handles

thumbnail
Blake Jones, geändert vor 10 Jahren.

Social Office CKEditor WYSIWYG HTML format missing re-sizeable handles

Junior Member Beiträge: 39 Beitrittsdatum: 17.08.12 Neueste Beiträge
I have a question regarding the new Social Office's integrated CKEditor WYSIWYG.

With Social Office's CKEditor on HTML format the re-sizable handle normally located in the lower right corner is Missing.

I have provided a screen shot of each format including: Creole, Media Wiki, and HTML.

Notice that Creole and Media Wiki format have the re-sizable handle.

Note that HTML file format is missing the re-sizable handle.

This becomes a major problem due to the Fixed Height and Width of the WYSIWYG Editor being too small for us, we would like the ability to re-size our WYSIWYG Window as needed.

Is there a FIX for this issue? I have noticed this issue since Liferay 6.1.2 CE GA3.

Any help or solutions for this issue would be greatly appreciated.

Please see the Missing Re-sizable Handles on the Lower Right Corner of the Attached Screen Shot Images

Thanks,




thumbnail
Blake Jones, geändert vor 10 Jahren.

RE: Social Office CKEditor WYSIWYG HTML format missing re-sizeable handles

Junior Member Beiträge: 39 Beitrittsdatum: 17.08.12 Neueste Beiträge
This is not a permanent fix, it is a work around for this issue: It attempts to find the ckeditor window and resizes it, and if it can't find the window the script waits 3 seconds and tries again. If you have JQUERY libraries installed, you can run this script without changing the source code.

$(window).bind("load", function(){
$(document).ready(function(){
box_size();
setTimeout(function(){box_size()}, 3000);
});

function box_size() {
$(".cke_contents").css("height", "650px");
}
}