0

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
});
Regent
  • 5,142
  • 3
  • 21
  • 35
Ram
  • 337
  • 5
  • 23

1 Answers1

0

It seems Firefox does not support the focusint event, and chrome has incomplete support.

source

bastos.sergio
  • 6,684
  • 4
  • 26
  • 36