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

Right-to-Left Support

The RadLinkButton fully supports right-to-left (RTL) language locales (Figure 1). In order to turn on the RTL support you should set dir=rtl to the html or body element or at least to its parent element (Example 1). You can also use the direction:rtl CSS property.

Figure 1: RadLinkButton in RTL mode.

RadLinkButton-rtl

Example 1: Set the "direction: rtl" style to the RadLinkButton's wrapper element in order to enable the RTL support for the control.

<div style="direction: rtl">
    <telerik:RadLinkButton runat="server" ID="RadLinkButton1" Text="RadLinkButton" NavigateUrl="https://www.telerik.com" Target="_blank">
    </telerik:RadLinkButton>
    <br />
    <br />
    <telerik:RadLinkButton runat="server" ID="RadLinkButton2" Text="RadLinkButton with Icon" NavigateUrl="https://www.telerik.com" Target="_blank">
        <Icon CssClass="rbUpload" />
    </telerik:RadLinkButton>
</div>

See Also

In this article