Telerik Grid for ASP.NET MVC supports right-to-left languages.
The only necessary change to enable this mode is to add a t-grid-rtl class to the grid:
<%= Html.Telerik().Grid<Order>()
.Name("Grid")
.HtmlAttributes(new { @class = "t-grid-rtl" })
%>