Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

1. Overview

Excerpt Include
IN:_include_user_dictionary_overview
IN:_include_user_dictionary_overview
nopaneltrue


Panel

Table of Contents
maxLevel2
stylenone


2. User Dictionary User Interface

2.1. User Dictionary Interface in SCAYT Product

Excerpt Include
IN:_include_user_dictionary_ui_scayt_for_ec
IN:_include_user_dictionary_ui_scayt_for_ec
nopaneltrue

Info

Check our User Manuals for the SCAYT product:

3. Predefine User Dictionary in Web Application


Excerpt Include
IN:_include_user_dictionary_predefined_user_dictionary_parameters
IN:_include_user_dictionary_predefined_user_dictionary_parameters
nopaneltrue

Example 3.1. Setting a Predefined User Dictionary in SCAYT for Editable Controls

Code Block
languagejs
themeEmacs
<div contenteditable id="container1">
    This is an exampl of a sentence with two mispelled words.
    Just type text with misspelling to see how it works.
</div>
  
<script>
    var instance1 = new SCAYT.SCAYT({
        container: document.getElementById("container1"),
        autoStartup: true,
        spellcheckLang: 'en_US',
        serviceProtocol: 'https',
        serviceHost: 'your_service_host',
        servicePort: '443',
        servicePath: 'spellcheck31/script/ssrv.cgi',
        userDictionaryName: 'your_user_dictionary_name'
    });
</script>

Example 3.2. Setting a Predefined User Dictionary in SCAYT plugin for CKEditor 4

Code Block
languagejs
themeEmacs
CKEDITOR.config.scayt_customerId='1:8aqCX3-uoCg12-Fnm4Z1-WwVax2-YNael2-tyyJv-nydFp-f1G3R2-EwCAE-HUvnK3-vIhF83-Jn';
CKEDITOR.config.wsc_customerId = '1:WvF0D4-UtPqN1-43nkD4-NKvUm2-daQqk3-LmNiI-z7Ysb4-mwry24-T8YrS3-Q2tpq2';
CKEDITOR.config.scayt_autoStartup = true;
CKEDITOR.config.grayt_autoStartup = true;
CKEDITOR.config.scayt_sLang ="en_US";
CKEDITOR.config.scayt_userDictionaryName='user_dictionary_name';