拼写检查器不适用于CKEditor 4

时间:2013-01-17 17:23:22

标签: ruby-on-rails-3 ckeditor javascript

我正在使用CKEditor v4.0和ckeditor gem https://github.com/tsechingho/ckeditor-rails

的Gemfile

gem 'ckeditor', '>= 4.0.0.rc1'

config.js

CKEDITOR.editorConfig = function( config ){
   config.skin = 'moono',
   config.disableNativeSpellChecker = true,
   config.scayt_autoStartup = true,
   config.toolbar = [ 
      [ 'Bold', 'Italic', 'Underline', 'Strike', 'Blockquote', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink', '-', 'SpellChecker', 'Scayt' ]
   ]
};

我一直在测试许多可能的解决方案,我认为这是v4.0的问题

https://www.outsystems.com/NetworkForums/ViewTopic.aspx?TopicId=7033&Topic=CKEditor---Spell-Check-As-You-Type-(-SCAYT-

http://devnet.kentico.com/FAQs/Content-Management/Enable-the-Spell-Check-As-You-Type-feature-by-defa.aspx

在这里http://drupal.org/node/1870398名为“vinmassaro”的用户发布了如果您在工具栏上设置“键入时拼写检查”它可以工作,因为两种类型的拼写检查是在一个按钮中压缩,但是剂量工作,甚至没有工具栏按钮显示:S

1 个答案:

答案 0 :(得分:0)

我不知道如何解决这个问题,但我找到了另一个可以做我想做的宝石,如果你想使用这个功能,你可以在没有任何额外配置的情况下使用它。

gem 'ckeditor_rails', '~> 4.0.1.1'

https://github.com/tsechingho/ckeditor-rails