RadEditor for ASP.NET AJAX

RadControls for ASP.NET AJAX

To enable spell checking in your web application you need to accomplish the following 2 tasks:

  1. Copy the needed dictionary files in your project's App_Data folder:The files are located in your <RadControls for ASP.NET AJAX installation folder>\App_Data\RadSpell. Create a RadSpell folder in your project's App_Data folder and copy the dictionaries there

     
    Copy Dictionaries
  2. Add the SpellCheck handler in your web.config file. This can be done by using one of the following approaches:

    1. Manually add the handler in your web.config file (in the httpHandlers section):

      CopyXML
      <add verb="*" validate="false" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI" />
    2. Use the RadEditor's Smart Tag in Visual Studio. Note that the smart tag will appear only if you have the Telerik.Web.UI.dll file in your project's bin folder or in the GAC:

       
      RadEditor Smart Tag
  3. Set the Language property of the RadEditor (by default it is set to "en-US"). If you want to change the language, you can do this by

    1. declaring the property in the RadEditor's declaration:

      CopyASPX
      <telerik:RadEditor runat="server" ID="RadEditor1">
          <Languages>
              <telerik:SpellCheckerLanguage Code="fr-FR" Title="French" />
          </Languages>
      </telerik:RadEditor>
    2. adding the language in the RadEditor's Languages collection. It is recommended to add the language in Page_Load