How to use Checkbox in Kendo UI open source Grid
You can easily put a checkbox in Kendo UI Grid. Just define its template while defining the columns See the code below...
scrollable: true,
sortable: true,
filterable: true,
columns: [
{
field: "FirstName",
title: "Location (City Country)",
width: 100
},
{
field: "LastName",
title: "Institution",
width: 100
},
{
field: "City",
title: "Select",
width: 100,
template: '<input type=\"checkbox\" />'
}
]
});
Comments
Post a Comment