Theme: Popup:

Grid RTL Support

The grid will detect if the html direction is rtl and construct itself accordingly

    <div style="direction: rtl;">
<%:Html.Awe().Grid("RTLGrid")
.Url(Url.Action("GetItems","LunchGrid"))
.Height(300)
.Persistence(Persistence.Session)
.Columns(
new Column { Name = "Id", Width = 55 },
new Column { Name = "Person" },
new Column { Name = "Food" },
new Column { Name = "Price", Width = 100 },
new Column { Name = "Location" })
%>
</div>