Spellcheck for integrated Text editors

Hi,

Is there a attribute for spellcheck for integrated test editors such as Ni-edit, TinyMCE and CKEdit? I have tried putting the native HTML spellcheck=“true” attribute to the Nic-editor but it did not work. Any suggestions?

Thanks

Hello,

As it’s integrated editors, such functionality you can find in docs of these editors.

CKEdit sample: Code Snippet
Spelling and Grammar Checking | CKEditor 4 Documentation

As to TinyMCE you can find spellchecker plugin. But check is there pro version or not

Just add it to the config property as

webix.ui({
    id: "editor",
    view: "tinymce-editor",
    config: { 
        //some code here
    }
});

Sample: Code Snippet
Text Editor Integration - Text editors integration. Webix Docs