3 Answers, 1 is accepted
0
Randhir
Top achievements
Rank 1
answered on 20 May 2011, 06:35 AM
I see this questions posted on Dec 10, 2010 and still no answer.
This is very irresponsible behavior from telerik team.
We love telerik controls and i have used this in number of silverlight and windows phone 7 projects. I am using telerik asp.net mvc3 extensions and using editor and try to implement spellchecker. I don't see no where in documentation that there is an inbuilt spellchecker in telerik editor.
Please answer
Is there any built in free and open source spellchecker for editor in telerik asp.net mvc3 extensions. Please, let us know.
All the information about integrating spellchecker in editor is found on other fourms(with incomplete answers), but not on this forum.
Please answer
Thank's
Randhir
This is very irresponsible behavior from telerik team.
We love telerik controls and i have used this in number of silverlight and windows phone 7 projects. I am using telerik asp.net mvc3 extensions and using editor and try to implement spellchecker. I don't see no where in documentation that there is an inbuilt spellchecker in telerik editor.
Please answer
Is there any built in free and open source spellchecker for editor in telerik asp.net mvc3 extensions. Please, let us know.
All the information about integrating spellchecker in editor is found on other fourms(with incomplete answers), but not on this forum.
Please answer
Thank's
Randhir
0
TDG
Top achievements
Rank 1
answered on 26 Apr 2012, 04:09 PM
Do you have answer for this question yet?
If yes, can I get a sample project that can check the spell for textbox (not by MVC Editor)?
I have many textbox in view page and like to spell check whenever user leaves textbox to next textbox.
Thanks,
Young
If yes, can I get a sample project that can check the spell for textbox (not by MVC Editor)?
I have many textbox in view page and like to spell check whenever user leaves textbox to next textbox.
Thanks,
Young
0
Jillian
Top achievements
Rank 1
answered on 26 Apr 2012, 04:19 PM
Here is how I implemented the rad spell checker into an MVC2 project for a text area.
<%: Html.TextAreaFor(Function(i) i.Text, 20, 100, Nothing)%><br>
<telerik:RadSpell ID="RadSpell1" runat="server" ControlToCheck="Text" IsClientID="true"
HandlerUrl="~/Telerik.Web.UI.DialogHandler.axd" SupportedLanguages="en-US,English" />
<telerik:RadScriptManager ID="RadScriptManager1" runat="server" />
<telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server" />