Telerik Forums
UI for ASP.NET AJAX Forum
19 answers
3.2K+ views

By default, RadSpell offers the following three dictionaries: English (en-US), German (de-DE) and French (fr-FR). All other dictionaries are provided by our customers and can be downloaded from the links below:

 

Please, note that some of the dictionaries can be incomplete and they are not supported by Telerik. If you create a new properly working dictionary and share it with our community, we will gladly award you for your work.

Starting from Q3 2010, we provide support for NHunspell and OpenOffice dictionaries for RadSpell. You can find how to enable this feature in the following code library project: Using OpenOffice spell provider in RadSpell.

Best regards,
The Telerik team

Rumen
Telerik team
 updated question on 09 Mar 2022
10 answers
401 views
I use client js method "startSpellCheck(); " to check spelling, it works fine when the text is small, but when the text content is large, for example 30k+ lines, an error page pop up:

 
Spell Check handler server error: 500<br><br><title>...The length of the string exceeds the value set on the maxJsonLength property.</title><br>...


I have set the maxJsonLength to a big value in web.config, but it seems that the spell check ignore the setting.
...

<system.web.extensions><br>    <scripting><br>      <webServices>       <br>        <jsonSerialization maxJsonLength="2147483644"></jsonSerialization><br>      </webServices><br>    </scripting><br>  </system.web.extensions>

Rumen
Telerik team
 answered on 29 Apr 2020
2 answers
125 views

Hi,

I am facing issue in Telerik spellcheck control in one of my project.
This control works fine when I run it on my local machine, but when I deploy it on server (windows 2012) it is giving me following error when I click on "Spell Check" button,

"Web.config registration missing! The spellchecking functionality requires a HttpHandler registration in web.config. Please, use control Smart Tag to add the handler automatically, or see the help for more information.

~/Telerik.Web.UI.SpellCheckHandler.ashx"

This website is running in a IIS 7 environment in Classic Mode. I tried different solution available on internet but no luck as of now.
I have added dll reference in my web project and also registered in the web.config.

Could you please let me know if anyone worked on this kind of issue or having any suggestions.

jacob
Top achievements
Rank 1
 answered on 03 Feb 2020
4 answers
814 views

Hi,

I am using RadSpell and RadEditor, and have put following in web.config, but I still get error: "Web.config registration missing! The Telerik dialogs require a HttpHandler registration in the web.config file....". Why do I still get this error, and how do I make it go away ? Thank you.

 

<httpHandlers>
    ...
    <add path="Telerik.Web.UI.DialogHandler.aspx" verb="*" type="Telerik.Web.UI.DialogHandler" validate="false" />
</httpHandlers>
...
<system.webServer>  
    <handlers>    
        ...    
        <add name="Telerik_Web_UI_DialogHandler_aspx" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" />  
    </handlers>
</system.webServer>
Rumen
Telerik team
 answered on 03 Oct 2018
1 answer
34 views
Can anyone point me in the direction of either documentation, a demo, or even an old forum post that details how to setup a RadGrid (that's operating in Batch edit) that uses the GridTextBoxColumnEditor control to use the RadSpell control for spell check?
Rumen
Telerik team
 answered on 13 Jul 2018
9 answers
261 views

Dear Telrrik,

 

I am trying to put custom skin for RadSpellCheck, even I gave enable embed skin false and uploaded the skin CSS file and image in the theme folder, I am not getting the applied skin properly. Please see the attachments for more information

 
pelase find the list of below images

http://www.hrdpower.com/downloads/spell/Spell%20Address%20List%20in%20Solution%20Explorer.JPG
http://www.hrdpower.com/downloads/spell/Spell%20Half%20Visible.JPG
http://www.hrdpower.com/downloads/spell/Spell%20link%20address%20has%20to%20be%20addressed%20in%20%20Master%20Page.JPG
http://www.hrdpower.com/downloads/Spell%20Source%20Code.JPG


 

Regards,

Vinod

Harikrishnan
Top achievements
Rank 1
 answered on 10 Oct 2017
3 answers
88 views
Hi,

I have implemented the SpellChecker in combination with RadEditor where I haven't used the RadEditor's AjaxSpellCheck tool, but I have pointed separate SpellChecker component to Radeditor's content area. I did this, because using the RadEditor's built-in AjaxSpellChecker doesn't provide the option of spell checking in new dialog box, but just an "inline" one, as far as I can see. All works fine unless I start using tables in RadEditor content. Some of the text is not properly recognized, this occures quite randomly.. Is there some way how to avoid this kind of situation?
Or is there a way, how to make RadEditor built in spell checker to work in "popup" not in "inline" mode?
Thank you, guys :0)

Adrian
Rumen
Telerik team
 answered on 02 Aug 2017
4 answers
286 views

I am trying to use RadSpell , but  a web.config security setting is not allowing RadSpell to open it's frame popup window. The security setting is a must setting , i can not remove this setting. This setting is to prevent click jacking. ( more on this - https://www.owasp.org/index.php/Clickjacking)

 

 

Here is my  web config setting.

<httpProtocol>
      <customHeaders>
        <clear/>
        <add name="Strict-Transport-Security" value="max-age=31536000; includeSubDomains" />              
      <add name="X-Frame-Options" value="DENY"/>
        <add name="Content-Security-Policy" value="frame-ancestors 'inherit' " />
        <remove name="X-AspNet-Version" />
       <remove name="X-Powered-By" />

      </customHeaders>
    </httpProtocol>

Jyoti
Top achievements
Rank 1
 answered on 16 Mar 2017
0 answers
46 views

I have a form with a few textboxes and a save button.  I want RadSpellCheck to launch when the save button is clicked and then on the server execute the click event for the save button.  I don't want a separate button for the spell check.  When I run the page the RadSpellCheck dialog box appears and finds the misspellings but doesn't correct them when the form is submitted.

I appreciate any ideas you all have.

Here's the .aspx markup file:

 

<head runat="server">
    <title></title>
    <telerik:RadScriptBlock ID="script1" runat="server">
        <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
    <script type="text/javascript">
        function check() {
            Page_ClientValidate();
            if (Page_IsValid) {
                var spell = $find('<%= RadSpell1.ClientID %>');
                spell.startSpellCheck();
                return false;
            }
        }
        function RadSpell1_OnClientCheckFinished() {
            $("#<% =btnSaveReal.ClientID %>").trigger('click');
        }
    </script>
        </telerik:RadScriptBlock>
</head>
<body>
    <form id="form1" runat="server">
        <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
         
     
    <div>
    <asp:TextBox id="txt1" runat="server">My firzt client side TEXTAREA with some delibirate mistakees.</asp:TextBox>
        <br />
        <asp:TextBox id="txt2" runat="server">My secont client side TEXTAREA with some delibirate mistakees.</asp:TextBox>
        <br />
        <asp:Textbox id="txt3" runat="server">My thirdth client side TEXTAREA with some delibirate mistakees.</asp:Textbox>
        <br />
        <asp:TextBox ID="txtTest" runat="server"></asp:TextBox>
        <asp:RequiredFieldValidator ID="reqTest" ControlToValidate="txtTest" ErrorMessage="Required" runat="server"></asp:RequiredFieldValidator>
        <br />
        <telerik:RadSpell RenderMode="Lightweight" ID="RadSpell1" runat="server" ControlsToCheck="txt1,txt2,txt3" OnClientCheckFinished="RadSpell1_OnClientCheckFinished" IsClientID="true" ButtonType="None"></telerik:RadSpell>
        <asp:Button ID="btnSave" Text="Save" OnClientClick="return check()" runat="server" />
        <asp:Button ID="btnSaveReal" Text="Save" OnClick="btnSave_Click" style="display:none;" runat="server" />
        <asp:Button ID="btnDelete" Text="Delete" OnClick="btnDelete_Click" runat="server" />
    </div>
    </form>
</body>
</html>

 

Code Behind:

public partial class test : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            
        }

        protected void btnSave_Click(object sender, EventArgs e)
        {
            if (Page.IsValid)
            {
                Response.Write(txt1.Text);
            }
        }

        protected void btnDelete_Click(object sender, EventArgs e)
        {
            Response.Write("Delete");
        }
    }

Jutas Arthasarnprasit
Top achievements
Rank 1
 asked on 20 Feb 2017
1 answer
48 views
We are using a Windows client application Microsoft Customer Care Accelerator.We have implemented the spell check in email body which works fine when email in opened in IE browser.
But when we open the email in the Windows client application which hosts it on a WPF control, we are not able to use mouse to select the results of the spell check.
Please refer the attach screen-shot for reference.
Any advice or help is greatly appreciated.
Marin Bratanov
Telerik team
 answered on 25 May 2016
Narrow your results
Selected tags
Tags
+? more
Top users last month
horváth
Top achievements
Rank 2
Iron
Iron
Steve
Top achievements
Rank 2
Iron
Erkki
Top achievements
Rank 1
Iron
Mark
Top achievements
Rank 2
Iron
Iron
Veteran
Jakub
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
horváth
Top achievements
Rank 2
Iron
Iron
Steve
Top achievements
Rank 2
Iron
Erkki
Top achievements
Rank 1
Iron
Mark
Top achievements
Rank 2
Iron
Iron
Veteran
Jakub
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?