focusin
doesn't work in Google Chrome and Firefox. It works in IE. What should I use here to make it works in all browsers?
Here debugger isn't fired in Chrome and Firefox. Works in IE.
$("#grid").kendoGrid({
// the column fields should match the excel columns
columns: [
{ field: "Name" },
{ field: "Sub" },
],
dataSource: [
{ Name: "Ram", Sub: "Math" }
],
}).on('focusin', function(e) {
debugger
//something here
});