|
Rank: Member
Groups: Registered
Joined: 2/26/2014 Posts: 9
|
I have implemented client side script for RapidSpellWeb and referencing RapiSpell_AYT.js on the page.
When I type 'testing' , it underlines the word in red and suggests 'Testing'. To get rid of this, I used below javascript on my page:
rapidSpell.setParameterValue('default', 'AllowAnyCase', true);
However, it looks like it is not working and I can still see red underline when I type 'testing'. Any solution to this problem?
|
|
Rank: Advanced Member
Groups: Administrators, Registered
Joined: 10/20/2004 Posts: 456
|
Hi - I believe you just need to use 'IgnoreIncorrectSentenceCapitalization' instead. Let me know how that goes. Dan Dan Wright
|
|
Rank: Member
Groups: Registered
Joined: 2/26/2014 Posts: 9
|
Thanks Dan. It worked for me and sorry for delay in response. BTW, what is difference between AllowAnyCase and IgnoreIncorrectSentenceCapitalization?
|
|
Rank: Advanced Member
Groups: Administrators, Registered
Joined: 10/20/2004 Posts: 456
|
AllowAnyCase will mean that incorrect capitalization is allowed, eg. australia instead of Australia. IgnoreIncorrectSentenceCapitalization will not suggest the first word of a sentence to start with a capital. Let me know if you need anything else. Dan Dan Wright
|
|