X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6a7e4474cba9d8be4b2ec445e10f1691f7277c50..c8256059947f3aa8f5b0a9a2acf55e2142bb4742:/docs/output/Ext.form.TimeField.html
diff --git a/docs/output/Ext.form.TimeField.html b/docs/output/Ext.form.TimeField.html
index 6b3a3194..6577eca8 100644
--- a/docs/output/Ext.form.TimeField.html
+++ b/docs/output/Ext.form.TimeField.html
@@ -845,7 +845,20 @@ config for a suggestion, or use a render listener directly:
new
single: true // Remove the listener after first invocation
}
});
-See also getEl
Component | | hidden : Boolean True if this component is hidden. Read-only. | Component |
| initialConfig : Object This Component's initial configuration specification. Read-only. | Component |
| label : Ext.ElementThe label Element associated with this Field. Only available after this Field has been rendered by a
+ See also getEl | Component |
| hidden : Boolean True if this component is hidden. Read-only. | Component |
| initialConfig : Object This Component's initial configuration specification. Read-only. | Component |
| keyNav : Ext.KeyNav
+<p>A {@link Ext.KeyNav KeyNav} object which handles navigation keys for this ComboBox. This performs actions
+based on keystrokes typed when the input field is focused.</p>
+<p><b>After the ComboBox has been rendered</b>, you may override existing navigation key functionality,
+or add your own based upon key names as specified in the {@link Ext.KeyNav KeyNav} class.</p>
+<p>The function is executed in the scope (<code>this</code> reference of the ComboBox. Example:</p><pre><code>
+myCombo.keyNav.esc = function(e) { // Override ESC handling function
+ this.collapse(); // Standard behaviour of Ext's ComboBox.
+ this.setValue(this.startValue); // We reset to starting value on ESC
+};
+myCombo.keyNav.tab = function() { // Override TAB handling function
+ this.onViewClick(false); // Select the currently highlighted row
+};
+</code></pre> | ComboBox |
| label : Ext.ElementThe label Element associated with this Field. Only available after this Field has been rendered by a
Ext.layout.FormL... The label Element associated with this Field. Only available after this Field has been rendered by a
Ext.layout.FormLayout layout manager. | Field |
| lastQuery : StringThe value of the match string used to filter the store. Delete this property to force a requery.
Example use:
|