[SOLVED] CKEditor

Answered
0
0

Hi – I am trying to figure out how to put CKEditor into readonly mode.  I don’t see a property for this.  Does anyone know if there is a javascript way to do it via CKEditor.Eval(“javascript here”)?  Or some other means?

 

Thanks in advance…

 

Matthew

  • You must to post comments
Best Answer
0
0

Use the setReadOnly() method in CKEditor.

this.ckEditor1.Eval(“this.editor.setReadOnly(true)”);

Or modify the extension to add a ReadOnly property.

HTH

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.