Online Documentation
- Introduction to JavaScript SpellCheck
- Installation
- Installing JavaScript Spell Check
- Trouble Shooting
- Installing Dictionaries
- Your Custom Dictionary
- Use 1: The Spell Check Window
- Opening the Spell Check Dialog
- Hello World Example
- Call Back after Spellchecking
- Testing The Water
- Advanced Example
- Use 2: Ajax Spell Check
- Using the Ajax Spell-Checker
- Testing for AJAX compatability
- AJAX Spell Checker Example
- Use 3: The Spell Check Function
- The JavaScript spellCheck Function
- JavaScript spellCheck Example
- Advanced Settings
- Object Reference
- JavaScript SpellCheck API Overview
- Properties
- setupPath
- languages
- windowLanguage
- hideSummary
- externalCSS
- caseSensitive
- checkGrammar
- ignoreAllCaps
- ignoreWebAddresses
- ignoreNumbers
- newSentenceOnEachNewLine
- useServerSession
- ajaxEnabled
- Methods
- spellCheckWindow
- spellCheckWindowTest
- spellCheck
- ajaxSpellCheck
- Evant Handlers (CallBack Functions)
- callBack
- ajaxCallBack
- Changing Default Property Values
- ASP.Net and JavaScript SpellCheck
- Licenses & Registration
- Free Trial & Registering
- License Agreement
windowLanguage
This property is used to decide the User Interface language of the spell-checking window.
The possible values of windowLanguage are:- "EN" - For English
- "ES" - For Spanish
- "DE" - For German
- "NL" - For Dutch
- "FR" - For French
- "IT" - For Italian
- "PT" - For Portuguese
- "NO" - For Norwegian
- "SV" - For Swedish
- "DK" - For Danish
The default value is "EN" for English.
Note that changing the Window Language does not automatically select the Dictionary Language used for spell-checking.
Example
var oSpell = new JavaScriptSpellCheck() ;
oSpell.windowLanguage= "FR" ;
oSpell.windowLanguage= "FR" ;

