Hi,
SpellChecker offers several properties for you to specify whether to ignore certain words:
http://doc.essentialobjects.com/library/1/eo.web.spellchecker.ignoreallcapital.aspxhttp://doc.essentialobjects.com/library/1/eo.web.spellchecker.ignorenonalpha.aspxThe first option should ignore UPPERCASE and the second option should ignore NUMBER and HTML for you.
When user clicks "Add to Dictionary", the word is added to a custom dictionary file (a plain text file) inside the same dictionary directory. You can use Windows Explorer to check for the files and you will see an additional file is created inside that directory. The file is created in the same directory where the main dictionary file is. So directory structure is the same.
You can start the SpellChecker by calling the spell checker's client side start method:
http://doc.essentialobjects.com/library/1/jsdoc.public.spellchecker.start.aspxIt will be something like this:
Code: JavaScript
eo_GetObject("SpellChecker1").start();
Note that you want to avoid calling this method too soon (before the page is fully loaded). So you may want to use setTimeout to delay the call. For example,
Code: JavaScript
setTimeout(
function()
{
eo_GetObject("SpellChecker1").start();
}, 1000);
Thanks!
Thanks!