Hi
I have a grid that has inplace editing enabled. I would like to capture the tab event on one specific cell's input. I've added this to my view:
$(document).ready(function () {
var grid = $("#ItemsGrid");
$(document).on("keydown", "input#UnitPrice", function (e) {
console.log("keydown on input UnitPrice");
var code = e.keyCode || e.which;
if (code === 9) {
console.log("Tab");
}
});
});
however, I find that "Tab" is never logged to the console. It seems that it's getting suppressed by kendo.js (at least, thats what I can figure out by poking around in the debugger...)
Is there a better way to capture keydown events in a specific edit cell?