I'm facing the problem. The bug only appears with IE but works fine with firefox.
You have to click on the first line to get the focus, but if you click anywhere else, nothing happens. If anyone has a trick to get over this bug, i m interested :]
Seems like this is still a problem - even in the latest CKEditor release (3.3).
I'm using IE 8 in compatibility mode and the CKEditor setting startupFocus is set to false.
As "bidulemachin" points out in the first reply, it happens when you click anywhere but the first line of the editor. If you click x2 times it gets focus, but that isn't optimal for our IE users/customers.
Anyone found a fix for this?
Edit: I investigated it further and I think is caused by the following settings: config.enterMode = CKEDITOR.ENTER_BR; - Can anyone confirm?
laped wrote:Edit: I investigated it further and I think is caused by the following settings: config.enterMode = CKEDITOR.ENTER_BR; - Can anyone confirm?
With IE 7, I removed the configuration option that you refer to in your post where config.enterMode = CKEDITOR.ENTER_BR and my problem of setting focus programatically on the editor was solved.
laped wrote:Seems like this is still a problem - even in the latest CKEditor release (3.3).
I'm using IE 8 in compatibility mode and the CKEditor setting startupFocus is set to false.
As "bidulemachin" points out in the first reply, it happens when you click anywhere but the first line of the editor. If you click x2 times it gets focus, but that isn't optimal for our IE users/customers.
Anyone found a fix for this?
Edit: I investigated it further and I think is caused by the following settings: config.enterMode = CKEDITOR.ENTER_BR; - Can anyone confirm?
I still have the problem even after removing CKEDITOR.ENTER_BR;
Re: CKEditor 3.0 bug in IE with focus in textarea HELP
You have to click on the first line to get the focus, but if you click anywhere else, nothing happens. If anyone has a trick to get over this bug, i m interested :]
Thanks in advance
Re: CKEditor 3.0 bug in IE with focus in textarea HELP
editor.on('click', function(ev)
{
CKEDITOR.instances.editor1.focus();
});
but it doesn't work (((
Re: CKEditor 3.0 bug in IE with focus in textarea HELP
editor.on( 'contentDom', function() {
var doc = editor.document;
doc.on('click', function () {
doc.focus();
}
);
}
);
Seems to work with IE only if there s no text written before.
Post your ideas here, it could help
Re: CKEditor 3.0 bug in IE with focus in textarea HELP
if you click at first - it's working, if you lose focus and click again it doesn't work
((
Re: CKEditor 3.0 bug in IE with focus in textarea HELP
EDIT : There is the same bug with dialog boxes in " Paste " for example
Re: CKEditor 3.0 bug in IE with focus in textarea HELP
This issue is already in our issue tracker:
http://dev.fckeditor.net/ticket/1659
To be notified on any updates please add your email in CC field. Fix will be available in nightly version when ready.
There are already several patches which all of you are welcome to test out, specially the last one 1659_7_ref.patch.
Thank you for the report.
Re: CKEditor 3.0 bug in IE with focus in textarea HELP
Re: CKEditor 3.0 bug in IE with focus in textarea HELP
I'm using IE 8 in compatibility mode and the CKEditor setting startupFocus is set to false.
As "bidulemachin" points out in the first reply, it happens when you click anywhere but the first line of the editor. If you click x2 times it gets focus, but that isn't optimal for our IE users/customers.
Anyone found a fix for this?
Edit: I investigated it further and I think is caused by the following settings: config.enterMode = CKEDITOR.ENTER_BR; - Can anyone confirm?
Re: CKEditor 3.0 bug in IE with focus in textarea HELP
With IE 7, I removed the configuration option that you refer to in your post where config.enterMode = CKEDITOR.ENTER_BR and my problem of setting focus programatically on the editor was solved.
Re: CKEditor 3.0 bug in IE with focus in textarea HELP
I still have the problem even after removing CKEDITOR.ENTER_BR;
Re: CKEditor 3.0 bug in IE with focus in textarea HELP
I can NOT resovled it now .please help me
thanks....
Re: CKEditor 3.0 bug in IE with focus in textarea HELP