Search code examples
asp.net-mvckendo-gridkendo-ui-mvc

Configure Kendo UI ASP.NET MVC a razor view to display a checkbox


How can I configure a kendo ui grid with asp.net mvc to display a checkbox?

At the moment I just see true/false values...


Solution

  • Use Client template for that column. Somethigs like

    columns.Bound(c => c.BooleanColumn).ClientTemplate("<input type='checkbox' #= BooleanColumn ? checked='checked' : '' # disabled='disabled' ></input>");