Chris
Chris

Reputation: 3129

How to override Kendo Grid keyboard navigation?

I need to overwrite some of the Kendo UI Grid's keyboard navigation, such as Ctrl+End, that focuses on the last row's last cell and I need to override that so when I click Ctrl+End that I can focus on whichever cell that I want, but I have to keep the navigation property set to true because I am also tabbing through the grid

Upvotes: 0

Views: 381

Answers (1)

GaloisGirl
GaloisGirl

Reputation: 1516

I'm afraid you'll have to implement your own navigation with the help of the current method.

The grid exposes a navigate event, and you could do preventDefault on it, but id doesn't tell you what keys were pressed for the navigation.

Upvotes: 1

Related Questions