I know I should create separate questions, but these are all so minor it doesn't seem worthwhile.
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
Spell Check handler server error: 500<
br
><
br
><
title
>...The length of the string exceeds the value set on the maxJsonLength property.</
title
><
br
>...
<
system.web.extensions
><
br
> <
scripting
><
br
> <
webServices
> <
br
> <
jsonSerialization
maxJsonLength
=
"2147483644"
></
jsonSerialization
><
br
> </
webServices
><
br
> </
scripting
><
br
> </
system.web.extensions
>
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.
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
>
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
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>