0

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

宝石文件

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

配置.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

4

1 回答 1

0

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

gem 'ckeditor_rails', '~> 4.0.1.1'

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

于 2013-01-25T14:22:47.803 回答