Ckeditor: Using Firefox built in spellchecker

前端 未结 5 1950
长情又很酷
长情又很酷 2021-02-07 09:23

I feel a little caught between a rock and a hard place here. I want to use Firefox\'s built in spell checking without disabling Ckeditor\'s context menu as this renders it impos

相关标签:
5条回答
  • 2021-02-07 09:36

    Have you tried to enable SCAYT (SpellCheckAsYouType) in CKeditor? It is buit-in there and works as a plug-in.

    0 讨论(0)
  • 2021-02-07 09:39

    Use this plugin: http://martinezdelizarrondo.com/spellcheck/ and as it's stated, you have to install the WriteArea extension in Firefox.

    0 讨论(0)
  • 2021-02-07 09:42

    hi there you can disable it by going to

    Ckeditor>File Editor.then make sure you're editing the ckeditor.config.js file!

    then add the two lines at the bottom (after the }; tag) add the two lines like below!...

    **> CKEDITOR.config.disableNativeSpellChecker = false;

    CKEDITOR.config.browserContextMenuOnCtrl = true;**

    then save it.......... when writing in ckeditor a red dot underline will appear if your spell is incorrect! when you right click the ckeditor's context menu appear.....but when you Ctrl+Right Click the browsers default menu appears....thanks..........

    0 讨论(0)
  • 2021-02-07 09:47

    Use the browser's default contextmenu for right click action, then you don't need to press Ctrl to shoe the browser's default context menu.

    config.removePlugins = 'scayt,menubutton,contextmenu';
    

    Enable the built-in spell checker if the browser provides one.

    config.disableNativeSpellChecker = false;
    
    0 讨论(0)
  • 2021-02-07 09:56

    You could try setting the disableNativeSpellChecker property to false - it should then be possible to see the native spell checker markings within the editor - however for me I couldn't get this to work in Firefox, only Google chrome.

    You can then hold the ctrl key down when you right click to show the browser context menu (provided browserContextMenuOnCtrl has not been set to false)

    HTH.

    0 讨论(0)
提交回复
热议问题