Hi, I am running IE8 on XP in Virtual box and CK editor is not appearing. My Textarea has style="visibility:hidden" (added by CKeditor script) But no editor to be seen.
I'm using asp.net but that doesn't seem to be the problem as a standard textarea does the same thing.
It works in other browsers it's just IE8. anyone seen this? I looked in the help docs but could not see anything that helped. The demos also work in IE8 just not my version.
Here is my init Script
CKEDITOR.replace('jobBodyTextBox', {
height: '375px',
toolbar:
[
{ name: 'basicstyles', items: ['Bold', 'Italic'] },
{ name: 'paragraph', items: ['NumberedList', 'BulletedList'] },
{name: 'clipboard', items : [ 'Cut','Copy','Paste','PasteText','PasteFromWord','-','Undo','Redo' ] },
]
// misc options
});
CKEDITOR.editorConfig = function (config) {
// misc options
config.height = '850px';
};
If it matters? I don't have the CKeditor folder at root it's in my script folder.
I have changed my code to this
CKEDITOR.replace('jobBodyTextbox', {
toolbar: 'Basic'
});
And it works but i want a minimal bar not all the options a=how can i change this with out breaking IE8 as toolbar: { is not working for IE
