New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Right-to-left Support

The RadImageEditor fully supports right-to-left (RTL) language locales. The RadImageEditor is created and added to the page as a child of the body element and in order to turn on the RTL support you should set dir=rtl to the html or body elements or set the direction:rtl css property as well.

This example uses an iframe for its content area to keep the navigation and the layout of the online demos.

  • Content.aspx
    • Content.aspx
    • DefaultVB.aspx
  • contentStyles.css
    • contentStyles.css
    • styles.css
<%@ Page Language="C#" Inherits="Telerik.Web.Examples.ImageEditor.RightToLeft.Content" CodeFile="Content.aspx.cs" %>

<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title>RTL RadImageEditor Page</title>
        <link href="contentStyles.css" rel="stylesheet" />
    </head>
    <body>
        <form id="form1" runat="server">
            <telerik:RadScriptManager ID="ScriptManager1" runat="server" />
            <telerik:RadImageEditor RenderMode="Lightweight" runat="server" ID="RadImageEditor1" Skin="Telerik" ImageUrl="~/ImageEditor/images/addtext.jpg" CanvasMode="No" Width="640" Height="360" />
        </form>
    </body>
</html>

Support & Learning Resources

Find Assistance