Hi all,
I'm trying to focus on an element when a key is pressed, I'm using the FocusManager so theoretically it should be simple, right?
The key pressing part isn't an issue, that works fine, but there doesn't seem to be any way to focus on a specific element.
Things I've tried:
Code:
eastPanel.focus();
Ext.FocusManager.setFocus(eastPanel, true, Ext.FocusManager.options);
Ext.FocusManager.navigateSiblings();
Ext.FocusManager.focusEl(eastPanel);
Ext.FocusManager.shouldShowFocusFrame(true);
Ext.FocusManager.setFocus(eastPanel);
Has anyone successfully accomplished this before? I've exhausted things that I can think of to try.