Monday, 19 August 2013

CKEDITOR 4.1.1 Firefox 23 Icons are not loaded

CKEDITOR 4.1.1 Firefox 23 Icons are not loaded

I have a Div inside a IFrame, the content of the div is loaded using ajax.
Where ajax content has a textarea which is replaced with CKEditor.
Only in Firefox, the CKEditor does not load icons. All other browsers it
works.
Here is the code
Parent Page Code
<html>
<body onLoad="javascript:loadIEAddOn();">
......
</body>
<script>
function loadIEAddOn() {
processAjaxRequestPostAsynchronous('ajaxRequestPost','PersonAjaxHandler','loadIEAddOnServer','','');
}
loadIEAddOnServer=function(){
window.frames['consFrame'].document.getElementById('childInnerDiv').innerHTML
= arguments[0];
document.getElementById('consFrame').contentWindow.initCustomizedInsideFCKEditor();
}
</script>
</html>
IFrame Page
<html>
<div id="childInnerDiv">
</div>
<script>
function initCustomizedInsideFCKEditor(){
var oFCKeditor = CKEDITOR.replace("editorDescription",{
height:"160", width:"550"
});
}
</script>
</html>
Googling have given me this link: But of no use
http://ckeditor.com/forums/CKEditor/Button-icons-not-loaded-in-Firefox-21.0-CKEditor-4.1.1

No comments:

Post a Comment