2

Is there any option for automatic spell checker( while typing) in tinymce?.

sam
  • 21
  • 2

3 Answers3

1

Try adding a javascript code that sets the spellcheck value to "true" after the TinyMCE editor loads.

Ed Patrick Tan
  • 727
  • 1
  • 9
  • 15
0

Assuming you're using django-tinymce, it should be a matter of turning the plugin on in TINYMCE_DEFAULT_CONFIG. Then you can place the button where you want it. For example:

'theme_advanced_buttons2': "allmystuff,...,spellchecker",
'plugins': "abunchofplugins,...,spellchecker",

This assumes a folder named "spellchecker" under /tinymce/plugins which is available in your static files somewhere.

Tom
  • 22,301
  • 5
  • 63
  • 96
0

This looks like it: http://www.tinymce.com/wiki.php/Plugin:spellchecker

These look less useful:

http://www.tinymce.com/wiki.php/Configuration:gecko_spellcheck http://www.tinymce.com/wiki.php/Plugin:iespell

dokkaebi
  • 9,004
  • 3
  • 42
  • 60
  • here the problem is that it will check after clicking on spellchecker button. But i want it to work like ms-word spell checker. Is there any command i am missing?. and i am using IE8.. – sam Mar 04 '12 at 08:42