I have a similar problem. I am trying to get the reference of a kendo grid with the below code.
var grd = $("#grid").data("kendoGrid")
But grd is undefined.
Also my grid doesn't identify the event DataBound. Am I missing anything?
.DataSource(dataSource => dataSource
.Ajax()
.ServerOperation(false)
.Events(events => {
events.Error("error_handler");
events.DataBound("reload_grid");
}