Right-to-left Support
The RadDock fully supports right-to-left (RTL) language locales. It is created and added to the page root (as a direct child of the form element) and in order to turn on the RTL support you should set dir=rtl to the html or body element or set the direction:rtl CSS property as well.
html
{
direction: rtl;
}
<telerik:RadDock RenderMode="Lightweight" runat="server" ID="RadDock1" Title="Right-to-left">
<ContentTemplate>
<asp:Label ID="Label1" Text="Lorem ipsum dolor sit amet" runat="server"></asp:Label>
</ContentTemplate>
</telerik:RadDock>