I have a RadSpell which checks the spelling on Textboxes in a RadGrid.
Action is initiated via ImageButton OnClientClick
The controlToCheck is set like this:
The spell check appear to work (finds misspellings) and the "The Spell Check is complete!" However, when you "Change" misspellings, they don't actually change.
Using IE, I found that there is a JavaScript error (see attached image) on line 7630 which reads
Upgrade wizard says I'm using 2010.2.713.40, but my bin has a reference to 2010.2.929.40 dll. I cannot upgrade to the Q3 release (separate post).
Action is initiated via ImageButton OnClientClick
The controlToCheck is set like this:
function checkTimeCardSpelling() {var comments = $('input[id$="uxComments"]');var spellChecker = $find('<%= uxSpellChecker.ClientID %>');for (var i = 0; i < comments.length; i++) {spellChecker.set_textSource(null); // not documented, but REQUIREDspellChecker.set_controlsToCheck(null); // not documented, but REQUIREDspellChecker.set_controlToCheck(comments[i].id);spellChecker.startSpellCheck();}}The spell check appear to work (finds misspellings) and the "The Spell Check is complete!" However, when you "Change" misspellings, they don't actually change.
Using IE, I found that there is a JavaScript error (see attached image) on line 7630 which reads
a.fireEvent(String.format("on{0}",c),d);Upgrade wizard says I'm using 2010.2.713.40, but my bin has a reference to 2010.2.929.40 dll. I cannot upgrade to the Q3 release (separate post).
