I am trying to use a UNC path or a regular path in my javascript for my user dictionary.
Code:
rapidSpell.setParameterValue('default', 'UserDictionaryFile', '\\BTSIALT645\install\naddepalli-dictionary.txt');
rapidSpell.setParameterValue('default', 'UserDictionaryFile', 'c:\install\naddepalli-dictionary.txt');
However, when I run the spellchecker, I get an error saying illegal characters in path.
When I remove all the path information and just use the file name it works but stores my user dictionary in the folder C:\Windows\system32\inetsrv
I would like to be able to store my user dictionary in a file share so that it can be accessible through a load share environment.
Can you please let me know what I am doing wrong.