It's very important to me that my users cannot just bring full-scale html into their posts. I've set the config option to force paste as plain text, however users can just drag and drop text into the box and this bypasses that filter. This seems crazy.
How can I likewise constrain dragged-and-dropped text, the way I am constraining copied-and-pasted text to force to plain text?
Thanks for any help or ideas you might have!
How can I likewise constrain dragged-and-dropped text, the way I am constraining copied-and-pasted text to force to plain text?
Thanks for any help or ideas you might have!

Re: Drag and Drop to Plain Text
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
Re: Drag and Drop to Plain Text
If i am off base, please let me know, and possibly provide a link to your issue.
Re: Drag and Drop to Plain Text
Re: Drag and Drop to Plain Text
document.onmousemove = function() { document.body.style.MozUserSelect="none"; return false; }It seems to work with one exception. If you can mange to get a cursor, it will paste. For a normal user just trying to drag and drop, it might work for you though.
Re: Drag and Drop to Plain Text
<body> <div id="wrapper" style="width:auto"><textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea></div> <script type="text/javascript"> //<![CDATA[ CKEDITOR.replace( 'editor1'); edit = CKEDITOR.instances.editor1; $('#wrapper').mouseenter(function() { CKEDITOR.instances.editor1.setReadOnly( false ); }).mouseleave(function(){ CKEDITOR.instances.editor1.setReadOnly( true ); }); //]]> </script> </body>