I have used CKEditor in flex:
<ckeditor:CKEditor id="editor1" width="100%" height="100%">
<ckeditor:htmlText>
<![CDATA[
]]>
</ckeditor:htmlText>
</ckeditor:CKEditor>
It's working fine now. But I need to enable, disable that editor on checkbox. But I can't make disable that editor anyway.
I have found how to Hide that editor. But, I want to display that editor on screen. Just need to make is disable.
I have tried.
<script type="text/javascript">
function hideCKEditor()
{
document.getElementById('ck0').disabled = true;
}
</script>
But didn't got succeeded.
I want that, user can not Edit the editor text when checkbox is checked.