New to Telerik UI for ASP.NET MVC? Start a free 30-day trial
Right-to-Left Support
Updated over 6 months ago
Right-to-left (RTL) support reflects the ability of a widget to render its content in a right-to-left direction for right-to-left languages, such as Arabic, Hebrew, Chinese, or Japanese.
The following example demonstrates how to set the basic right-to-left configuration for the DateRangePicker.
Razor
@using Kendo.Mvc.UI <div class="demo-section"> <div class="k-rtl"> @(Html.Kendo().DateRangePicker() .Name("daterangepicker") ) </div> <style> .demo-section { width: 400px; text-align: center; margin: 50px auto; padding-top: 50px; padding-bottom: 50px; } </style> </div>