I have got a problem where my grid columns expect a detailed name ("CityFrom" and "CityTo" - those are strings), but a method returns "Name" property. How can I map the result to the columns without duplicating the code?
Here is grid:
@(Html.Kendo().Grid<RouteDto>().Name("route-grid").Columns(cfg =>{ cfg.Bound(m => m.CityFrom) .Title("City From") .Width(150) .Filterable(f => f.Multi(true).DataSource(ds => ds.Read(r => r.Action("GetCities", "City") ) ) ); cfg.Bound(m => m.CityTo) .Title("City To") .Width(150) .Filterable(f => f.Multi(true).DataSource(ds => ds.Read(r => r.Action("GetCities", "City") ) ) );}))
Here is method:
public ActionResult GetCities(){ var cities = _cityService.GetCities().Select(c => new { c.Name }).ToList(); return Json(cities, JsonRequestBehavior.AllowGet);}Error I am getting is in console:
Uncaught ReferenceError: CityFrom is not definedUncaught ReferenceError: CityTo is not defined
On grid I could use .DataTextField("Name"), but I don't have this option here. Both filters have got the same set of values - cities from database. Any ideas what can I do elegantly here?
