I have some radio buttons on my page and I want to bind one of my Kendo Grid's columns according to the user's selection, and then refresh the grid.
This is my javascript code:
function change(c) {
var grid = $("#grid").data('kendoGrid');
switch (c) {
case 2:
break;
case 3:
break;
default:
case 1:
break;
}
}