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

    Right-to-Left Support

    RadioButtonList can be placed in a right-to-left environment without issues in its appearance or functionality.

    In order to switch a RadioButtonList to RTL mode, you should set dir=rtl to its parent HTML element or use the direction:rtl CSS property. You can also do this globally for the page, e.g., on the <body>, <form> or <html> element.

    • DefaultCS.aspx
    <%@ Page Language="C#" AutoEventWireup="true"  %>
     
    <%@ 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" style="direction: rtl;">
            <telerik:RadRadioButtonList runat="server" ID="RadioButtonList1" AutoPostBack="false" ToolTip="RadioButtonList tooltip">
                <Items>
                    <telerik:ButtonListItem Text="پذیرفتن" Value="1" />
                    <telerik:ButtonListItem Text="انکار" Value="2" />
                </Items>
            </telerik:RadRadioButtonList>
        </div>
        </form>
    </body>
    </html>

    Support & Learning Resources

    Find Assistance