RadSpell for ASP.NET AJAX

RadControls for ASP.NET AJAX

The RadSpell fully supports right-to-left (RTL) language locales. In order to turn on the RTL support you should set its DialogsCssFile property to an external CSS file in which you have the direction: rtl property set for the html or body element.

CopydialogsRTL.css
body
{
    direction: rtl;
}
CopyASPX
<div dir="rtl">
     <asp:TextBox ID="TextBox1" runat="server" Height="100" TextMode="MultiLine">mizpelled conttent</asp:TextBox><br />
     <telerik:RadSpell ID="RadSpell1" runat="server" ControlToCheck="TextBox1" DialogsCssFile="dialogsRTL.css" />
</div>
radspell-rtl-screenshot

See Also