Hi Team,
In my application below jQuery version has been updated
"~/Scripts/jquery-3.6.0.min.js",
"~/Scripts/jquery-migrate-3.4.0.min.js",
After the upgraded version I am getting Uncaught TypeError: Cannot read properties of undefined (reading 'id') this error
In in my kendo grid like this .Events(command => command.DataBound("onGridDataBound"))
function onGridDataBound(e) {
dataBoundNoResultsDisplayCheck(e);
//some custom business logic is here
}
and the error generating function is below
function dataBoundNoResultsDisplayCheck(e) {
switch (e.sender.table.context.id)
{
}
}
on the basis of id code is running but now after the update not able to get grid id can you help me on this finding workaround here for getting kendo grid id in event