プラグインは、ckeditorフォルダーにあるconfig.jsファイルにいくつかの変更を加えることでアクティブ化できます。次のブロックのコメントを解除します。
//Example Lotus Spell Checker config.
/*
config.extraPlugins += ',lotusspellchecker';
config.lotusSpellChecker = {
restUrl:'',
lang:'en',
suggestions:'5',
format:'json',
highlight: { element : 'span', styles : { 'background-color' : 'yellow', 'color' : 'black' } },
preventCache: true
};
*/
注:使用するスペルチェックサービスのrestUrlを提供する必要があります。ここでの説明は、「プラグインをアクティブ化する方法」の質問のみを解決します。
また、リッチテキストコントロールにいくつかのDojoプロパティを提供する必要があります。
これは、ツールバーにスペルチェックボタン(LotusSpellChecker)を追加します。
プロパティ名:ツールバー
プロパティ値: var myToolbar = "[['Format'、'Font'、'FontSize']、\ n" + "['Bold'、'Italic'、'Underline'、'Strike'、'-'、'TextColor '、' BGColor'、'-'、' JustifyLeft'、' JustifyCenter'、' JustifyRight'、' JustifyBlock'、'-'、' NumberedList'、' BulletedList']、\ n "+" ['Indent'、' Outdent']、\ n "+" ['Subscript'、' Superscript']、\ n "+" ['RemoveFormat'、'-'、' MenuPaste'、'-'、' Undo'、' Redo'、'検索'、' LotusSpellChecker'、'-'、' Image'、' Table'、' Link'、' Flash'、'-'、' PageBreak'、' HorizontalRule'、'SpecialChar'、' Blockquote'、' Smiley'、' ShowBlocks']、\ n "+" ['BidiLtr'、' BidiRtl']、\ n "+" ['Maximize']] "; return myToolbar;
これはプラグインをアクティブにします。
プロパティ名: extraPlugins
プロパティ値: lotusspellchecker
これはあなたが得るものです: