Hi everybody,
I'm using the current 2.5 Beta and JavaScript.
I have a page with 5 textareas and created 5 fck-instances. Here I have the problem that there's no blinking cursor when I click in the editor. The cursor shows up when I start writing or paste some text into the editor.
So the cursor is just missing when I click into an empty editor. It's not that kind of a big issue but I'm sure our customers would be confused while not having a cursor.
The problem appears in IE 6 and IE 7, FF works fine.
Got anybody an idea how to solve that?
Here's the code:
I'm using the current 2.5 Beta and JavaScript.
I have a page with 5 textareas and created 5 fck-instances. Here I have the problem that there's no blinking cursor when I click in the editor. The cursor shows up when I start writing or paste some text into the editor.
So the cursor is just missing when I click into an empty editor. It's not that kind of a big issue but I'm sure our customers would be confused while not having a cursor.
The problem appears in IE 6 and IE 7, FF works fine.
Got anybody an idea how to solve that?
Here's the code:
window.onload = function()
{
var oFCKeditor = new FCKeditor('firstinstance');
oFCKeditor.BasePath = "/FCKeditor/" ;
oFCKeditor.ToolbarSet = 'Basic' ;
oFCKeditor.ReplaceTextarea();
var oFCKeditor2 = new FCKeditor('secondinstance');
oFCKeditor2.BasePath = "/FCKeditor/" ;
oFCKeditor2.ToolbarSet = 'Basic' ;
oFCKeditor2.ReplaceTextarea();
[...]
{
