This guide outlines the main steps that you need to follow in order to integrate and configure the SCAYT plugin for CKEditor 4.

All the described steps are provided for the Server version of SCAYT.

1. Initialize CKEditor 4

Before integrating and configuring the SCAYT plugin, CKEditor should be properly configured in your web application. If you haven't done it yet, refer to Example CKEditor Setups on the CKEditor documentation pages for details.

2. Configure SCAYT Plugin

Define required SCAYT parameters and options in the CKEditor config.js file.

2.1. Specify path to the SCAYT plugin (wscbundle.js) using scayt_srcUrl parameter. 

config.scayt_srcUrl ="http(s)://your_host_name/wscservice/wscbundle/wscbundle.js";

2.2. Define additional SCAYT parameters, for example, start SCAYT spell and grammar automatically, change default language, and others.

config.scayt_autoStartup = true;
config.grayt_autoStartup = true;
config.scayt_sLang ="en_US";

Check a demo page with SCAYT plugin for CKEditor on our website.