Unplanned
Last Updated: 11 Jun 2021 08:33 by ADMIN
Pier-Luc
Created on: 19 Aug 2014 15:56
Category: UI for ASP.NET MVC
Type: Feature Request
2
Inline template for grid column editors
It would be nice to handle editor template directly in the grid's configuration. Very often we have to use a simple custom editor but we end up creating a new file every time.

Html.Kendo().Grid<Model>()
.Columns(cols=>
{
    cols.Bound(m=>m.SomeProp)
        .EditorTemplate(@<div>
            Html.Kendo().ComboBoxFor(m=>m) [...]
        </div>);
})
0 comments