This example shows the localize Telerik Grid for ASP.NET MVC.
To localize grid you have two options:
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" UICulture="en-US" %>
or through the System.Threading.Thread.CurrentThread.CurrentUICulture in the Action method, which returns the View.
public ActionResult Index()
{
System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("en-US");
}
<%= Html.Telerik().Grid(Model)
.Name("Grid")
.Localizable("fr-FR")
%>