spohlenz / tinymce-rails

Integration of TinyMCE with the Rails asset pipeline
Other
814 stars 257 forks source link

Spellchecker not working #119

Closed drewsheneman closed 10 years ago

drewsheneman commented 11 years ago

I read that adding spellchecker should just involve adding the following to config/tinymce.yml:

plugins:

However it does not seem to be activated. Also, just out of curiosity, is there a way to simply allow tinymce enabled text fields to use the built-in browser spell checking?

renaehodgkins commented 10 years ago

I'm also having a problem with this. tinyMCE is working in my app, but the spellchecker throws an "Error: General" message when it's selected on the page. I'm using the modern theme. Rails 3.2.14. Ruby 1.9.3-p194.

mitchnick commented 10 years ago

More specifically, the error on the server is ActionController::RoutingError (No route matches [POST] "/assets/tinymce/plugins/spellchecker"). Is there something which I need to manually add to my assets that the gem is not taking care of?

renaehodgkins commented 9 years ago

Was this issue closed without being resolved? I'm having this issue as well, was hoping to find the solution here :)

spohlenz commented 9 years ago

Looks like this was closed prematurely, sorry about that. tinymce-rails doesn't implement any of the server side logic required for the spellchecker plugin, so you'll need to implement this in your app and override the spellchecker_rpc_url option (see: http://www.tinymce.com/wiki.php/Configuration:spellchecker_rpc_url).

I'd love to see a tinymce-rails-spellchecker plugin to fill this void but I don't have time at the moment to work on it myself.