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

    Right-to-left Support

    RadComboBox fully supports right-to-left (RTL) language locales. The only thing you need to do is to mark the combobox instance with dir="rtl"as shown in the example.

    • DefaultCS.aspx
    • DefaultCS.aspx.cs
    • styles.css
    • combobox.xml
    <%@ Page AutoEventWireup="true" CodeFile="DefaultCS.aspx.cs" Inherits="ComboBox.Examples.Functionality.Rtl.DefaultCS"Language="c#"  %>
     
    <%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
     
    <!DOCTYPE html>
    <head runat="server">
        <title>Telerik ASP.NET Example</title>
    </head>
     
    <body>
        <form id="form1" runat="server">
        <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
        <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" />
     
        <div class="demo-container size-thin">
            <telerik:RadComboBox RenderMode="Lightweight" ID="RadComboBox1" runat="server" Width="300" Height="140" dir="rtl" />
        </div>
     
        </form>
    </body>
    </html>

    Support & Learning Resources

    Find Assistance