When I open my asp web page in IE10 the edit area of the ckeditor remains grey, does not show text and is not updatable. In all other browsers and versions it works fine.
I create the editor with the following code:
dim editor, initialValue, code, textareaAttributes
set editor = New CKEditor
editor.returnOutput = true
editor.basePath = "/ckeditor/"
editor.config("width") = 600
set textareaAttributes = CreateObject("Scripting.Dictionary")
textareaAttributes.Add "rows", 10
textareaAttributes.Add "cols", 80
Set editor.textareaAttributes = textareaAttributes
initialValue = "This <b>is</b> a test"
response.write editor.editor('editor1', initialValue)
Does anyone know if I should add something?
I create the editor with the following code:
dim editor, initialValue, code, textareaAttributes
set editor = New CKEditor
editor.returnOutput = true
editor.basePath = "/ckeditor/"
editor.config("width") = 600
set textareaAttributes = CreateObject("Scripting.Dictionary")
textareaAttributes.Add "rows", 10
textareaAttributes.Add "cols", 80
Set editor.textareaAttributes = textareaAttributes
initialValue = "This <b>is</b> a test"
response.write editor.editor('editor1', initialValue)
Does anyone know if I should add something?

I have tested a little that IE version and it seemed to work fine with CKEditor, but that windows8 environment was too much for me so I didn't perform big tests and maybe something is broken, but basic loading seemed to work fine.
It's the RTM version of Windows 8 build 9200...
We will be releasing a beta of CKEditor 4 soon so issues will be expected there too, which we hope you will help us debug.
Windows 8 is in release now (15th august)
I've already had a number of clients call to complain about it and I've had to tell them to use Chrome.
it works within the samples when used with
If there are wrong or missing doctype definitions, Internet Explorer 10 is forced to use IE10 Quirks mode and CKEditor is not compatible to it... If you force IE10 to use Standard mode via F12, ckeditor is working fine.
I hope this helps figuring out the problem.
I've filed a ticket for this problem: http://dev.ckeditor.com/ticket/9653
Attachments:
<!DOCTYPE html>
I make sure that I specify this doctype in the CKEditor config:
. . . docType : '<!DOCTYPE html>', . . . .
I am using the released version of Windows 8 Pro downloaded from the MSDN website (not a release candidate).
I miss the Start Button.
btw. the bug status changed from new to confirmed.
Any news on this subject?
I'm using ckeditor 3.2 Revision 5205 and I'm not for now able to upgrade because I have integration with filemanager..
So if there is a workaround for 3.2?
//Martin