All Telerik Components for ASP.NET MVC support right-to-left languages like Arabic, Persian and Hebrew.

To enable the RTL mode, you should:

  1. place the component in a container with the t-rtl class:

    <div class="t-rtl">
        <%= Html.Telerik().ComboBox()
                .Name("ComboBox")
                ...
        %>
    
        <%= Html.Telerik().DropDownList()
                .Name("DropDownList")
                ...
        %>
    
        <%= Html.Telerik().AutoComplete()
                .Name("AutoComplete")
                ...
        %>
    </div>
    
  2. include the telerik.rtl.css file in the document <head>, either through the StyleSheetRegistrar or through a HTML <link /> element

For more information, see the help topic on RTL support.