Right-to-Left Support
The RadCheckBoxList 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 (Figure 1). You can also use the direction:rtl CSS property.
<div style="direction: rtl">
<telerik:RadCheckBoxList runat="server" ID="RadCheckBoxList1">
<Items>
<telerik:ButtonListItem Text="יהודי" Selected="true" />
<telerik:ButtonListItem Text="גֶרמָנִיָת" />
<telerik:ButtonListItem Text="צָרְפָתִית" />
</Items>
</telerik:RadCheckBoxList>
</div>