| java.lang.Object com.gwtext.client.core.JsObject com.gwtext.client.util.KeyNav
KeyNav | public class KeyNav extends JsObject (Code) | | Provides a convenient wrapper for normalized keyboard navigation. KeyNav allows you to bind navigation keys to function
calls that will get called when the keys are pressed, providing an easy way to implement custom navigation schemes for any UI component.
The following are all of the possible keys that can be implemented: enter, left, right, up, down, tab, esc, pageUp, pageDown, del, home, end.
See Also: com.gwtext.client.util.KeyNavConfig |
Method Summary | |
native public void | disable() Disable the KeyNav. | native public void | enable() Enable the KeyNav. |
KeyNav | public KeyNav(JavaScriptObject jsObj)(Code) | | |
KeyNav | public KeyNav(String id, KeyNavConfig config)(Code) | | Creates a new KeyNav isntance.
Parameters: id - the element ID Parameters: config - the keynav configuration |
KeyNav | public KeyNav(Element el, KeyNavConfig config)(Code) | | Creates a new KeyNav isntance.
Parameters: el - the element Parameters: config - the keynav configuration |
disable | native public void disable()(Code) | | Disable the KeyNav.
|
enable | native public void enable()(Code) | | Enable the KeyNav.
|
Fields inherited from com.gwtext.client.core.JsObject | protected JavaScriptObject jsObj(Code)(Java Doc)
|
|
|