Set/Modify Title in kendo mvc grid?
问题 I'm trying to get hold of column bound info . so that i can add few settings(Width,Title etc) to Kendo grid where columns are created on fly . Code: @(Html.Kendo().Grid<dynamic>().Name("Grid").AutoBind(false) //model is dynamic .Columns(columns => { for (int index = 0; index < Model.mycolumns.Count; index++) { var item = Model.mycolumns.ElementAt(index); columns.Bound(item.Value, item.Key).Title("Test").Filterable(false); // Title setting ignored } }); when i set filterable false or Title to