How to handle these events in the grid?
Obvious solutions like
grid.on('keypress', handler);
or
listeners: { keypress: handler }
does not work - the handler does not start.
What am I missing?
Got this:
grid.view.addElListener('keypress', function() { ... });
PS: also formed it as a split mesh plugin: https://gist.github.com/2572486
You can try the itemkeydown event Ext.grid.View.