I am using a kendo grid in which i given multiple select option and i will display the grid on button click. Below is the code written under script...
$('#btn').on("click", function(e) {
summaryResultDataSource = [
{ name: "Jane Doe", age: 30 },
{ name: "John Doe", age: 33 },
{ name: "John Doe", age: 33 },
{ name: "John Doe", age: 33 },
{ name: "John Doe", age: 33 },
{ name: "John Doe", age: 33 },
{ name: "John Doe", age: 33 }
];
$("#grid").kendoGrid({
columns: [
{ field: "name" },
{ field: "age" }
],
dataSource: {
data: summaryResultDataSource
},
selectable: "multiple, row"
});
});
Now, when i click on button, the grid displays properly as expected and select the mutiple row by using ctrl + click option. First time i able to select multiple row.
Again, click on button now i am not able to select the multiple row using ctrl + click and it is not working.
Where, i am doing wrong. Please, help me to resolve this issue
Here is the demo... http://dojo.telerik.com/EKOm/4