Skip to content

onKeyPress

occurs when keyboard key is pressed for the control in focus

function onKeyPress(
// key code
code: number,
// event object
e: event
): void
grid.attachEvent("onKeyPress", function(code, e){
//code
});