Versions Compared

Key

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

...

When using this method, you need a CONFIG and a wscbundle.js script. After setting up the autoSearch, WProofreader will be enabled as soon as the editable container with CKEditor is in focus. Check a sample below or follow the steps described in the Get started with WProofreader Server (autoSearch).

theme
Code Block
languagejs
themeEmacs
<script>
    window.WEBSPELLCHECKER_CONFIG = {
		        autoSearch: true,
		lang: 'auto', //enable language auto-detection option
		theme: 'gray', //adjust color theme of WProofreader to look more native to CKEditor 4
		enableAutoSearchIn: ['uk_UA',.cke_wysiwyg_frame'], //limit WProofreader work only to CKEditor 4. They hide the original element and create an iframe element with cke_wysiwyg_frame class.
		...
	   };
</script>

<script type="text/javascript" src="http(s)://your_host_name/wscservice/wscbundle/wscbundle.js"></script>
Tip

To limit WProofreader work only to CKEditor 4, you can use the enableAutoSearchIn option where you need to indicate the class of CKEditor 4. They hide the original element and create an iframe element with cke_wysiwyg_frame class: <iframe class="cke_wysiwyg_frame"></iframe>.  

Code Block
languagejs
Emacs
enableAutoSearchIn: ['.cke_wysiwyg_frame'],

Option B. Using the init

...

method

When using this method, WProofreader will be started on the CKEditor 4 editor load.

Excerpt Include
IN:_include_initializing_wproofreader_using_init_in_ckeditor4_55x
IN:_include_initializing_wproofreader_using_init_in_ckeditor4_55x
nopaneltrue

3.  Specify

...

additional server parameters

Excerpt Include
IN:_include_initialize_wproofreader_additional_server_parameters_server
IN:_include_initialize_wproofreader_additional_server_parameters_server
nopaneltrue

4. Remove old plugins

Note

Excerpt Include
IN:_include_remove_scayt_wsc_plugins_ckeditor4
IN:_include_remove_scayt_wsc_plugins_ckeditor4
nopaneltrue

5. Further actions

After completion of the initialization steps

...

Make sure you use have specified the following parameters and their values for the server:

Code Block
languagejs
themeEmacs
serviceProtocol: 'https',
serviceHost: 'your_host_name',
servicePort: '2880',
servicePath: '/'

4. Further Actions

After you have initialized WProofreader in CKEditor 4, you can customize WProofreader options, its user interface, and behavior using WProofreader Customization Options. You customization options. More options and methods for advanced customization are available in API docs.

You can see the demo of CKEditor 4 integration on our web sitewebsite.

Excerpt Include
IN:_include_cloud_still_have_questions
IN:_include_cloud_still_have_questions
nopaneltrue

...

Can also be useful: