Hello
I have some issues after upgrading to the latest version from 4.0.1
When i have more then one instance of the editor only the first one sends the content after submit.
CKEDITOR.replace( 't1',
{
width : "100%",
height : "200px",
}
);
CKEDITOR.replace( 't2',
{
width : "100%",
height : "200px",
}
);
t2 will allways be empty. If i go back to 4.0.1 it works fine.
Any iddeea why is this happening ?
Cheers
Emanuel
I don't know if you found
I don't know if you found other solution, but this is mine.
Remove the content of all textarea tag's (Ex: <textarea id="t1">content 1</textare> to <textarea id="t1"></textarea>) and set value with javascript, like this example:
CKEDITOR.replace( 't1',
{
width : "100%",
height : "200px",
}
).setData('content textarea 1');
CKEDITOR.replace( 't2',
{
width : "100%",
height : "200px",
}
).setData('content textarea 2');
Don't ask me why, but this solution work's for me.
Big BUG of CKeditor.
I've just checked this on
I've just checked this on latest CKEditor and everything works fine. Are you sure that your textareas have different names?
Piotrek (Reinmar) Koszuliński
CKEditor JavaScript Developer
--
CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+