I'm using TinyMCE in an ASP.Net project, and I need a spell check. The only TinyMCE plugins I've found use PHP on the server side, and I guess I could just break down and install PHP on my server and do that, but quite frankly, what a pain. I don't want to do that.
As it turns out, Firefox's built-in spell check will work fine for me, but it doesn't seem to work on TinyMCE editor boxes. I've enabled the gecko_spellcheck option, which is supposed to fix it, but it doesn't.
Does anybody know of a nice rich-text editor that doesn't break the browser's spell check?
From the RTF functions toolbar, click Spell Check. The spell checker highlights any misspelled words and provides an alternative spelling for the word in the Replace with box.
Go to Settings. languages. To the right of 'Spell check', turn it on or off.
Disabling Spell Check in a HTML Form: To disable spellcheck in a HTML form the spellcheck attribute is set to “false”.
TinyMCE only goes out of its way to disable spell-checking when you don't specify the gecko_spellcheck
option (i verified this with their example code). Might want to double-check your tinyMCE.init()
call - it should look something like this:
tinyMCE.init({
mode : "textareas",
theme : "simple",
gecko_spellcheck : true
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With