I have a kendo grid, with checkboxes as a column. I want to restrict multiple checks on this. i.e. User must be able to check only one row, not more than 1.
Please help me on this.
Edit:
The checkboxes are generated using clientTemplate. I have bounded the column with the grid.
columns.Bound(p => p.FlightNo).HeaderTemplate(" ")
.ClientTemplate("<input id='checkbox' name='chbox' class='chkbxq' type='checkbox' />").Sortable(false).Filterable(false).Width(50);
Thanks Manikandan