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.

  • DefaultVB.aspx
  • DefaultVB.aspx.vb
  • styles.css
  • combobox.xml
<%@ Page AutoEventWireup="true" CodeFile="DefaultVB.aspx.vb" Inherits="ComboBox.Examples.Functionality.Rtl.DefaultVB"Language="vb"  %>
<%@ 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>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