Skip to main content

afterKeyDown

fires after the user is pressing a shortcut key

afterKeyDown: (event: Event) => void;

Parameters:

The callback of the event is called with the following parameter:

  • event: Event - a native KeyboardEvent object

Example

grid.events.on("afterKeyDown", (event) => {
// your logic here
});

Related sample: Grid. Events

Change log:

added in v6.4