I am using the Selection Checkbox feature of a Grid. For reference, built from this demo: https://demos.telerik.com/kendo-ui/grid/checkbox-selection
So I have a grid like the following:
$("#rgrid").kendoGrid({
dataSource: GridRepoDataSource(),
sortable: true,
persistSelection: true,
change: onChange,
columns: [
{
selectable: true,
width: "50px"
},
{
field: "name",
title: "Name"
},
{
field: "description",
title: "Description"
}
]
});
What I'm trying to do is after the grid has been loaded I have a button outside of the grid. When I click on the button, I want to select the check-box in the row based on the name. And hoping that when I do click on that button, hoping that the OnChange event still fires.
Thanks,
Richard