Hi
I use C# ASP.NET / Javascript to fill the editor..
function createEditor
if (editor) return;
var html = document.getElementById('<%=editor.ClientID %>').innerHTML;
editor = CKEDITOR.replace('<%=editor.ClientID %>');
editor.setData(html);
This editor.ClientID contains some raw html-content. When it's being readed into the ckeditor, it's appears converting to clear text.. which means I got all and so on if I look at the source code in the ckeditor.
How do I make the editor understand it's loaded with html-content.. not regular text?
I use C# ASP.NET / Javascript to fill the editor..
function createEditor
if (editor) return;
var html = document.getElementById('<%=editor.ClientID %>').innerHTML;
editor = CKEDITOR.replace('<%=editor.ClientID %>');
editor.setData(html);
This editor.ClientID contains some raw html-content. When it's being readed into the ckeditor, it's appears converting to clear text.. which means I got all and so on if I look at the source code in the ckeditor.
How do I make the editor understand it's loaded with html-content.. not regular text?