Custom shortcut keys for sorting and filtering

Tags: #<Tag:0x00007f8b1dd2d930>

How do I sorting and filtering a column in handsontable via the keyboard.

Hi @kunal

keyboard shortcuts for those two operations are not defined. Here is a list of defined shortcuts https://handsontable.com/docs/7.2.2/tutorial-keyboard-navigation.html

If you are planning to add those you use the beforeKeyDown event. It runs for the whole instance and allows you to peform an operation before the default key operation is executed. Here http://jsfiddle.net/AMBudnik/pdwemb53/1/ is an example of CTRL + B shortcut for adding a row below a selected row.