Versions Compared

Key

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

...

Tip

Good to know:

  • WebSpellChecker Proofreader is a new standalone control based on the SpellCheckAsYouType (SCAYT) product that is used for spell and grammar checking, proofreading as you type.
  • The new autoSearch feature brings awesome capabilities and simplifies the integration of proofreading functionality in web applications. It automatically searches and detects all the editable elements that are present on the page. As soon as an end user sets focus on this editable element or rich text editor (starts typing), WebSpellChecker Proofreader will be enabled.
  • To get started with the trial or paid version of WebSpellChecker Proofreader, it is required to subscribe to the Cloud SCAYT services. On the subscription, you will receive an email with your encrypted service ID, an activation key, that is required for the WebSpellChecker Proofreader service activation.

...

1. Add WebSpellChecker Proofreader Script

Excerpt Include
IN:_include_cloud_webspellchecker_proofreader_src_url
IN:_include_cloud_webspellchecker_proofreader_src_url
nopaneltrue

2. Initialize WebSpellChecker Proofreader with 'autoSearch'

It will take you less than five minutes to enable the multi-language proofreading functionality in your web application. You just need to add the next simple scripts script and define the required parameters. 

  • Specify your encrypted service ID. The required parameter for the Cloud WebSpellChecker Proofreader service activation is serviceId. You must pass your service ID value received on the subscription to access the WebSpellChecker Proofreader services.
  • Enable autoSearch functionality.You need to define the autoSearch parameter in order activate auto-searching functionality of WebSpellChecker Proofreader.
  • Adjust the default parameters. Check a full list of WebSpellChecker Proofreader API parameters and their possible values to adjust default settings of WebSpellChecker Proofreader to meet your needs.
Code Block
languagejs
themeEmacs
<script>
	window.WEBSPELLCHECKER_CONFIG = {
		autoSearch: true,
		enableGrammar: true,
        serviceId: 'encrypted-service-ID'
   };
</script>

<script src="https://svc.webspellchecker.net/spellcheck31/wscbundle/wscbundle.js"></script>


Info

Check a demo page with WebSpellChecker Proofreader for Editable Controls on our website.

...