This is a migrated thread and some comments may be shown as answers.

RadSpell: change misspelling not applied -- "Unspecified Error"

1 Answer 21 Views
Spell
This is a migrated thread and some comments may be shown as answers.
Brad
Top achievements
Rank 1
Brad asked on 11 Nov 2010, 09:21 PM
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:
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 REQUIRED
spellChecker.set_controlsToCheck(null); // not documented, but REQUIRED
spellChecker.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).

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 16 Nov 2010, 04:21 PM
Hello Brad,

Will it be possible to isolate the problem in a very simple project that does not use database, but a dummy datasource and send it via a support ticket? We will debug the problem and do our best to provide a solution.

Best regards,
Rumen
the Telerik team
Browse the vast support resources we have to jumpstart your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Tags
Spell
Asked by
Brad
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or