0

I have bounded tinyMCE to a textarea in my page,

How to disable formatted text entry in tinymce without unbinding tinyMCE from textarea?

user1941944
  • 331
  • 2
  • 6
  • 16

1 Answers1

3

First, you can disable the buttons bold, italic, underline. Additionally you can remove the buttons for the plugins style.

Second, there is a way to remove formatted text when pasting: TinyMCE Paste As Plain Text

Third, you may disable the drag&drop handling for the editor and hinder the user to get formatted text into the editor this way. Hava a look at the tinymce config param paste_block_drop under paste.

Community
  • 1
  • 1
Thariama
  • 50,002
  • 13
  • 138
  • 166
  • concerning shortcuts to apply formattings, you may overwrite those shortcut using the tinymce onKeyDown event and stop the propagation of events there – Thariama Apr 18 '13 at 08:53