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

Right-to-left Support

The RadFloatingActionButton supports right-to-left (RTL) language locales. In order to turn on the RTL support, you should set the dir="rtl" and add the "k-rtl" class to the parent element of the Control. The "k-rtl" class is needed to ensure the proper orientation of the Icons.

Check out the Right-To-Left support Demo for the RadFloatingActionButton

For example you can wrap the FloatingActionButton in a <div dir="rtl" class="k-rtl"> element

<div dir="rtl" class="k-rtl">
    <telerik:RadFloatingActionButton runat="server" ID="fabText" Text="Bookmark" Icon="bookmark" Shape="Pill" Size="Small" PositionMode="Absolute" Align="TopEnd">
    </telerik:RadFloatingActionButton>
</div>

See Also

In this article