X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/3789b528d8dd8aad4558e38e22d775bcab1cbd36..refs/heads/master:/docs/source/KeyNav2.html diff --git a/docs/source/KeyNav2.html b/docs/source/KeyNav2.html index 36878978..72ef815a 100644 --- a/docs/source/KeyNav2.html +++ b/docs/source/KeyNav2.html @@ -3,8 +3,8 @@
* @class Ext.util.KeyNav +* @class Ext.util.KeyNav * <p>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.</p> @@ -36,9 +36,6 @@ var nav = new Ext.util.KeyNav("my-element", { scope : this }); </code></pre> - * @constructor - * @param {Mixed} el The element to bind to - * @param {Object} config The config */ Ext.define('Ext.util.KeyNav', { @@ -64,7 +61,12 @@ Ext.define('Ext.util.KeyNav', { tab: 9 } }, - + + * Creates new KeyNav. + * @param {String/HTMLElement/Ext.Element} el The element or its ID to bind to + * @param {Object} config The config + */ constructor: function(el, config){ this.setConfig(el, config || {}); }, @@ -72,8 +74,8 @@ Ext.define('Ext.util.KeyNav', { * Sets up a configuration for the KeyNav. * @private - * @param {Mixed} el The element to bind to - * @param {Object}A configuration object as specified in the constructor. + * @param {String/HTMLElement/Ext.Element} el The element or its ID to bind to + * @param {Object} config A configuration object as specified in the constructor. */ setConfig: function(el, config) { if (this.map) { @@ -118,7 +120,7 @@ Ext.define('Ext.util.KeyNav', { * @cfg {Boolean} disabled - * True to disable this KeyNav instance (defaults to false) + * True to disable this KeyNav instance. */ disabled: false, @@ -126,13 +128,13 @@ Ext.define('Ext.util.KeyNav', { * @cfg {String} defaultEventAction * The method to call on the {@link Ext.EventObject} after this KeyNav intercepts a key. Valid values are * {@link Ext.EventObject#stopEvent}, {@link Ext.EventObject#preventDefault} and - * {@link Ext.EventObject#stopPropagation} (defaults to 'stopEvent') + * {@link Ext.EventObject#stopPropagation}. */ defaultEventAction: "stopEvent", * @cfg {Boolean} forceKeyDown - * Handle the keydown event instead of keypress (defaults to false). KeyNav automatically does this for IE since + * Handle the keydown event instead of keypress. 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. */