X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/d41dc04ad17d1d9125fb2cf72db2b4782dbe3a8c..6b044c28b5f26fb99c86c237ffad19741c0f7f3d:/docs/output/Ext.KeyNav.html diff --git a/docs/output/Ext.KeyNav.html b/docs/output/Ext.KeyNav.html index a982a197..ff2d883c 100644 --- a/docs/output/Ext.KeyNav.html +++ b/docs/output/Ext.KeyNav.html @@ -1,151 +1,32 @@ -
Package: | Ext |
Defined In: | KeyNav.js |
Class: | KeyNav |
Extends: | Object |
Provides a convenient wrapper for normalized keyboard navigation. KeyNav allows you to bind +
Package: | Ext |
Defined In: | KeyNav.js |
Class: | KeyNav |
Extends: | Object |
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. Usage:
-var nav = new Ext.KeyNav("my-element", {
+pageUp, pageDown, del, home, end. Usage:
+ var nav = new Ext.KeyNav("my-element", {
"left" : function(e){
- this.moveLeft(e.ctrlKey);
+ this.moveLeft(e.ctrlKey);
},
"right" : function(e){
- this.moveRight(e.ctrlKey);
+ this.moveRight(e.ctrlKey);
},
"enter" : function(e){
- this.save();
+ this.save();
},
- scope : this
-});
Config Options | -Defined By | -|
---|---|---|
- |
-
- defaultEventAction : String
-
- The method to call on the Ext.EventObject after this KeyNav intercepts a key. Valid values are Ext.EventObject.stopEv...
-
- The method to call on the Ext.EventObject after this KeyNav intercepts a key. Valid values are Ext.EventObject.stopEvent, Ext.EventObject.preventDefault and Ext.EventObject.stopPropagation (defaults to 'stopEvent')
- |
- KeyNav | -
- |
-
- disabled : Boolean
- True to disable this KeyNav instance (defaults to false)
- |
- KeyNav | -
- |
-
- forceKeyDown : Boolean
-
- Handle the keydown event instead of keypress (defaults to false). KeyNav automatically does this for IE since IE does...
-
- Handle the keydown event instead of keypress (defaults to false). KeyNav automatically does this for IE since IE does not propagate special keys on keypress, but setting this to true will force other browsers to also handle keydown instead of keypress.
- |
- KeyNav | -
Config Options | Defined By | |
---|---|---|
defaultEventAction : String The method to call on the Ext.EventObject after this KeyNav intercepts a key. Valid values are
+Ext.EventObject.stopE... The method to call on the Ext.EventObject after this KeyNav intercepts a key. Valid values are
+Ext.EventObject.stopEvent, Ext.EventObject.preventDefault and
+Ext.EventObject.stopPropagation (defaults to 'stopEvent') | KeyNav | |
disabled : Boolean True to disable this KeyNav instance (defaults to false) | KeyNav | |
forceKeyDown : Boolean Handle the keydown event instead of keypress (defaults to false). KeyNav automatically does this for IE since
+IE doe... Handle the keydown event instead of keypress (defaults to false). KeyNav automatically does this for IE since
+IE does not propagate special keys on keypress, but setting this to true will force other browsers to also
+handle keydown instead of keypress. | KeyNav |
Method | Defined By | |
---|---|---|
KeyNav( Mixed el , Object config )
+ Parameters:
| KeyNav | |
destroy()
+ :
+ void Destroy this KeyNav (this is the same as calling disable). Destroy this KeyNav (this is the same as calling disable). Parameters:
| KeyNav | |
disable()
+ :
+ void Disable this KeyNav Disable this KeyNav Parameters:
| KeyNav | |
enable()
+ :
+ void Enable this KeyNav Enable this KeyNav Parameters:
| KeyNav | |
setDisabled( Boolean disabled )
+ :
+ voidConvenience function for setting disabled/enabled by boolean. Convenience function for setting disabled/enabled by boolean. Parameters:
| KeyNav |