| allQuery : StringThe text query to send to the server to return all records for the list
+ A combobox control with support for autocomplete, remote-loading, paging and many other features.
+ A ComboBox works in a similar manner to a traditional HTML <select> field. The difference is
+that to submit the valueField, you must specify a hiddenName to create a hidden input
+field to hold the value of the valueField. The displayField is shown in the text field
+which is named according to the name.
+ Events
+ To do something when something in ComboBox is selected, configure the select event: var cb = new Ext.form.ComboBox({
+ // all of your config options
+ listeners:{
+ scope: yourScope,
+ 'select': yourFunction
+ }
+});
+
+// Alternatively, you can assign events after the object is created:
+var cb = new Ext.form.ComboBox(yourOptions);
+cb.on('select', yourFunction, yourScope);
+ ComboBox in Grid
+ If using a ComboBox in an Editor Grid a renderer
+will be needed to show the displayField when the editor is not active. Set up the renderer manually, or implement
+a reusable render, for example: // create reusable renderer
+Ext.util.Format.comboRenderer = function(combo){
+ return function(value){
+ var record = combo.findRecord(combo.valueField, value);
+ return record ? record.get(combo.displayField) : combo.valueNotFoundText;
+ }
+}
+
+// create the combo instance
+var combo = new Ext.form.ComboBox({
+ typeAhead: true,
+ triggerAction: 'all',
+ lazyRender:true,
+ mode: 'local',
+ store: new Ext.data.ArrayStore({
+ id: 0,
+ fields: [
+ 'myId',
+ 'displayText'
+ ],
+ data: [[1, 'item1'], [2, 'item2']]
+ }),
+ valueField: 'myId',
+ displayField: 'displayText'
+});
+
+// snippet of column model used within grid
+var cm = new Ext.grid.ColumnModel([{
+ ...
+ },{
+ header: "Some Header",
+ dataIndex: 'whatever',
+ width: 130,
+ editor: combo, // specify reference to combo instance
+ renderer: Ext.util.Format.comboRenderer(combo) // pass combo instance to reusable renderer
+ },
+ ...
+]);
+ Filtering
+ A ComboBox uses filtering itself, for information about filtering the ComboBox
+store manually see lastQuery. Config Options|
| allQuery : String The text query to send to the server to return all records for the list
with no filtering (defaults to '') | ComboBox | | allowBlank : Boolean Specify false to validate that the value's length is > 0 (defaults to
-true) | TextField | | allowDomMove : Boolean Whether the component can move the Dom node when rendering (defaults to true). | Component | | anchor : StringNote: this config is only used when this Component is rendered
+true) | TextField | | allowDomMove : Boolean Whether the component can move the Dom node when rendering (defaults to true). | Component | | anchor : StringNote: this config is only used when this Component is rendered
by a Container which has been configured to use an Anc... Note: this config is only used when this Component is rendered
-by a Container which has been configured to use an AnchorLayout
+by a Container which has been configured to use an AnchorLayout (or subclass thereof).
based layout manager, for example:
- See Ext.layout.AnchorLayout.anchor also. | Component | | applyTo : Mixed | BoxComponent | | applyTo : MixedSpecify the id of the element, a DOM element or an existing Element corresponding to a DIV
that is already present in... Specify the id of the element, a DOM element or an existing Element corresponding to a DIV
that is already present in the document that specifies some structural markup for this
component.
@@ -81,14 +81,118 @@ to create its subcomponents from that markup if applicable.
If applyTo is specified, any value passed for renderTo will be ignored and the target
element's parent node will automatically be used as the component's container.
- | Component | | autoCreate : String/ObjectA DomHelper element spec, or true for a default
-element spec. Used to create the Element which will encapsulate this... A DomHelper element spec, or true for a default
-element spec. Used to create the Element which will encapsulate this Component.
-See autoEl for details. Defaults to:
- {tag: "input", type: "text", size: "24", autocomplete: "off"}
| ComboBox | | autoShow : BooleanTrue if the component should check for hidden classes (e.g. 'x-hidden' or 'x-hide-display') and remove
+ | Component | | autoCreate : String/ObjectA DomHelper element spec, or true for a default
+element spec. Used to create the Element which will encapsulate this ... A DomHelper element spec, or true for a default
+element spec. Used to create the Element which will encapsulate this Component.
+See autoEl for details. Defaults to:
+ {tag: "input", type: "text", size: "24", autocomplete: "off"}
| ComboBox | | autoEl : MixedA tag name or DomHelper spec used to create the Element which will
+encapsulate this Component.
+You do not normally ne... A tag name or DomHelper spec used to create the Element which will
+encapsulate this Component.
+ You do not normally need to specify this. For the base classes Ext.Component, Ext.BoxComponent,
+and Ext.Container, this defaults to 'div'. The more complex Ext classes use a more complex
+DOM structure created by their own onRender methods.
+ This is intended to allow the developer to create application-specific utility Components encapsulated by
+different DOM elements. Example usage: {
+ xtype: 'box',
+ autoEl: {
+ tag: 'img',
+ src: 'http://www.example.com/example.jpg'
+ }
+}, {
+ xtype: 'box',
+ autoEl: {
+ tag: 'blockquote',
+ html: 'autoEl is cool!'
+ }
+}, {
+ xtype: 'container',
+ autoEl: 'ul',
+ cls: 'ux-unordered-list',
+ items: {
+ xtype: 'box',
+ autoEl: 'li',
+ html: 'First list item'
+ }
+}
| Component | | autoHeight : BooleanTrue to use height:'auto', false to use fixed height (or allow it to be managed by its parent
+Container's layout mana... True to use height:'auto', false to use fixed height (or allow it to be managed by its parent
+Container's layout manager. Defaults to false.
+ Note: Although many components inherit this config option, not all will
+function as expected with a height of 'auto'. Setting autoHeight:true means that the
+browser will manage height based on the element's contents, and that Ext will not manage it at all.
+ If the browser is managing the height, be aware that resizes performed by the browser in response
+to changes within the structure of the Component cannot be detected. Therefore changes to the height might
+result in elements needing to be synchronized with the new height. Example: var w = new Ext.Window({
+ title: 'Window',
+ width: 600,
+ autoHeight: true,
+ items: {
+ title: 'Collapse Me',
+ height: 400,
+ collapsible: true,
+ border: false,
+ listeners: {
+ beforecollapse: function() {
+ w.el.shadow.hide();
+ },
+ beforeexpand: function() {
+ w.el.shadow.hide();
+ },
+ collapse: function() {
+ w.syncShadow();
+ },
+ expand: function() {
+ w.syncShadow();
+ }
+ }
+ }
+}).show();
| BoxComponent | | autoScroll : Booleantrue to use overflow:'auto' on the components layout element and show scroll bars automatically when
+necessary, false... true to use overflow:'auto' on the components layout element and show scroll bars automatically when
+necessary, false to clip any overflowing content (defaults to false ).
| BoxComponent | | autoSelect : Booleantrue to select the first result gathered by the data store (defaults
+to true). A false value would require a manual ... true to select the first result gathered by the data store (defaults
+to true). A false value would require a manual selection from the dropdown list to set the components value
+unless the value of ( typeAheadDelay) were true. | ComboBox | | autoShow : BooleanTrue if the component should check for hidden classes (e.g. 'x-hidden' or 'x-hide-display') and remove
them on render... True if the component should check for hidden classes (e.g. 'x-hidden' or 'x-hide-display') and remove
-them on render (defaults to false). | Component | | blankText : StringThe error text to display if the allowBlank validation
-fails (defaults to 'This field is required') | TextField | | clearCls : StringThe CSS class used to to apply to the special clearing div rendered
+them on render (defaults to false). | Component | | autoWidth : BooleanTrue to use width:'auto', false to use fixed width (or allow it to be managed by its parent
+Container's layout manage... True to use width:'auto', false to use fixed width (or allow it to be managed by its parent
+Container's layout manager. Defaults to false.
+ Note: Although many components inherit this config option, not all will
+function as expected with a width of 'auto'. Setting autoWidth:true means that the
+browser will manage width based on the element's contents, and that Ext will not manage it at all.
+ If the browser is managing the width, be aware that resizes performed by the browser in response
+to changes within the structure of the Component cannot be detected. Therefore changes to the width might
+result in elements needing to be synchronized with the new width. For example, where the target element is: <div id='grid-container' style='margin-left:25%;width:50%'></div>
+A Panel rendered into that target element must listen for browser window resize in order to relay its
+child items when the browser changes its width: var myPanel = new Ext.Panel({
+ renderTo: 'grid-container',
+ monitorResize: true, // relay on browser resize
+ title: 'Panel',
+ height: 400,
+ autoWidth: true,
+ layout: 'hbox',
+ layoutConfig: {
+ align: 'stretch'
+ },
+ defaults: {
+ flex: 1
+ },
+ items: [{
+ title: 'Box 1',
+ }, {
+ title: 'Box 2'
+ }, {
+ title: 'Box 3'
+ }],
+});
| BoxComponent | | blankText : StringThe error text to display if the allowBlank validation
+fails (defaults to 'This field is required') | TextField | | boxMaxHeight : NumberThe maximum value in pixels which this BoxComponent will set its height to.
+Warning: This will override any size mana... The maximum value in pixels which this BoxComponent will set its height to.
+ Warning: This will override any size management applied by layout managers. | BoxComponent | | boxMaxWidth : NumberThe maximum value in pixels which this BoxComponent will set its width to.
+Warning: This will override any size manag... The maximum value in pixels which this BoxComponent will set its width to.
+ Warning: This will override any size management applied by layout managers. | BoxComponent | | boxMinHeight : NumberThe minimum value in pixels which this BoxComponent will set its height to.
+Warning: This will override any size mana... The minimum value in pixels which this BoxComponent will set its height to.
+ Warning: This will override any size management applied by layout managers. | BoxComponent | | boxMinWidth : NumberThe minimum value in pixels which this BoxComponent will set its width to.
+Warning: This will override any size manag... The minimum value in pixels which this BoxComponent will set its width to.
+ Warning: This will override any size management applied by layout managers. | BoxComponent | | clearCls : StringThe CSS class used to to apply to the special clearing div rendered
directly after each form field wrapper to provide... The CSS class used to to apply to the special clearing div rendered
directly after each form field wrapper to provide field clearing (defaults to
'x-form-clear-left').
@@ -96,7 +200,22 @@ directly after each form field wrapper to provide field clearing (defaults to
which has been configured to use the FormLayout layout
manager (e.g. Ext.form.FormPanel or specifying layout:'form') and either a
fieldLabel is specified or isFormField=true is specified.
- See Ext.layout.FormLayout.fieldTpl also. | Component | | cls : String A custom CSS class to apply to the field's underlying element (defaults to ''). | Field | | ctCls : String | Component | | clearFilterOnReset : Boolean true to clear any filters on the store (when in local mode) when reset is called
+(defaults to true) | ComboBox | | cls : String A custom CSS class to apply to the field's underlying element (defaults to ''). | Field | | contentEl : StringOptional. Specify an existing HTML element, or the id of an existing HTML element to use as the content
+for this comp... Optional. Specify an existing HTML element, or the id of an existing HTML element to use as the content
+for this component.
+
+- Description :
+
This config option is used to take an existing HTML element and place it in the layout element
+of a new component (it simply moves the specified DOM element after the Component is rendered to use as the content.
+- Notes :
+
The specified HTML element is appended to the layout element of the component after any configured
+HTML has been inserted, and so the document will not contain this element at the time the render event is fired.
+The specified HTML element used will not participate in any layout
+scheme that the Component may use. It is just HTML. Layouts operate on child items .
+Add either the x-hidden or the x-hide-display CSS class to
+prevent a brief flicker of the content before it is rendered to the panel.
+ | Component | | ctCls : StringAn optional extra CSS class that will be added to this component's container. This can be useful for
adding customize... An optional extra CSS class that will be added to this component's container. This can be useful for
adding customized styles to the container or any of its children using standard CSS rules. See
Ext.layout.ContainerLayout.extraCls also.
@@ -107,29 +226,30 @@ which assigns a value by default:
To configure the above Class with an extra CSS class append to the default. For example,
for BoxLayout (Hbox and Vbox): ctCls: 'x-box-layout-ct custom-class'
- | Component | | disableKeyFilter : Boolean Specify true to disable input keystroke filtering (defaults
-to false) | TextField | | disabled : BooleanTrue to disable the field (defaults to false).
+ | Component | | data : MixedThe initial set of data to apply to the tpl to
+update the content area of the Component. | Component | | disableKeyFilter : Boolean Specify true to disable input keystroke filtering (defaults
+to false) | TextField | | disabled : BooleanTrue to disable the field (defaults to false).
Be aware that conformant with the <a href="http://www.w3.org/TR/html40... True to disable the field (defaults to false).
Be aware that conformant with the HTML specification,
-disabled Fields will not be submitted. | Field | | disabledClass : String CSS class added to the component when it is disabled (defaults to 'x-item-disabled'). | Component | | displayField : StringThe underlying data field name to bind to this
-ComboBox (defaults to undefined if mode = 'remote' or 'field1' if
-tr... | ComboBox | | editable : Booleanfalse to prevent the user from typing text directly into the field,
-the field will only respond to a click on the tr... false to prevent the user from typing text directly into the field,
-the field will only respond to a click on the trigger to set the value. (defaults to true) | TriggerField | | emptyClass : StringThe CSS class to apply to an empty field to style the emptyText
+disabled Fields will not be submitted. | Field | | disabledClass : String CSS class added to the component when it is disabled (defaults to 'x-item-disabled'). | Component | | displayField : StringThe underlying data field name to bind to this
+ComboBox (defaults to undefined if mode = 'remote' or 'field1' if
+tran... | ComboBox | | editable : Booleanfalse to prevent the user from typing text directly into the field,
+the field will only respond to a click on the tri... false to prevent the user from typing text directly into the field,
+the field will only respond to a click on the trigger to set the value. (defaults to true). | TriggerField | | emptyClass : StringThe CSS class to apply to an empty field to style the emptyText
(defaults to 'x-form-empty-field'). This class is au... The CSS class to apply to an empty field to style the emptyText
(defaults to 'x-form-empty-field'). This class is automatically added and removed as needed
-depending on the current field value. | TextField | | emptyText : StringThe default text to place into an empty field (defaults to null).
+depending on the current field value. | TextField | | emptyText : StringThe default text to place into an empty field (defaults to null).
Note: that this value will be submitted to the serv... The default text to place into an empty field (defaults to null).
Note: that this value will be submitted to the server if this field is enabled and configured
with a name. | TextField | | enableKeyEvents : Boolean true to enable the proxying of key events for the HTML input
-field (defaults to false) | TextField | | fieldClass : String The default CSS class for the field (defaults to 'x-form-field') | Field | | fieldLabel : StringThe label text to display next to this Component (defaults to '').
+field (defaults to false) | TextField | | fieldClass : String The default CSS class for the field (defaults to 'x-form-field') | Field | | fieldLabel : StringThe label text to display next to this Component (defaults to '').
Note: this config is only used when this Component... The label text to display next to this Component (defaults to '').
Note: this config is only used when this Component is rendered by a Container which
has been configured to use the FormLayout layout manager (e.g.
@@ -143,28 +263,34 @@ Example use: new Ext.FormPanel({
xtype: 'textfield',
fieldLabel: 'Name'
}]
-});
| Component | | focusClass : String The CSS class to use when the field receives focus (defaults to 'x-form-focus') | Field | | forceSelection : Booleantrue to restrict the selected value to one of the values in the list,
-false to allow the user to set arbitrary text ... true to restrict the selected value to one of the values in the list,
-false to allow the user to set arbitrary text into the field (defaults to false) | ComboBox | | handleHeight : NumberThe height in pixels of the dropdown list resize handle if
- resizable = true (defaults to 8) | ComboBox | | height : NumberThe height of this component in pixels (defaults to auto).
+}); | Component | | flex : NumberNote: this config is only used when this Component is rendered
+by a Container which has been configured to use a BoxL... Note: this config is only used when this Component is rendered
+by a Container which has been configured to use a BoxLayout.
+Each child Component with a flex property will be flexed either vertically (by a VBoxLayout)
+or horizontally (by an HBoxLayout) according to the item's relative flex value
+compared to the sum of all Components with flex value specified. Any child items that have
+either a flex = 0 or flex = undefined will not be 'flexed' (the initial size will not be changed). | BoxComponent | | focusClass : String The CSS class to use when the field receives focus (defaults to 'x-form-focus') | Field | | forceSelection : Booleantrue to restrict the selected value to one of the values in the list,
+false to allow the user to set arbitrary text i... true to restrict the selected value to one of the values in the list,
+false to allow the user to set arbitrary text into the field (defaults to false) | ComboBox | | handleHeight : NumberThe height in pixels of the dropdown list resize handle if
+ resizable = true (defaults to 8) | ComboBox | | height : NumberThe height of this component in pixels (defaults to auto).
Note to express this dimension as a percentage or offset s... The height of this component in pixels (defaults to auto).
Note to express this dimension as a percentage or offset see Ext.Component.anchor. | BoxComponent | | hidden : BooleanRender this component hidden (default is false). If true, the
- hide method will be called internally. | Component | | hiddenId : StringIf hiddenName is specified, hiddenId can also be provided
-to give the hidden field a unique id (defaults to the hidd... If hiddenName is specified, hiddenId can also be provided
-to give the hidden field a unique id (defaults to the hiddenName). The hiddenId
-and combo id should be different, since no two DOM
-nodes should share the same id. | ComboBox | | hiddenName : StringIf specified, a hidden form field with this name is dynamically generated to store the
-field's data value (defaults ... If specified, a hidden form field with this name is dynamically generated to store the
-field's data value (defaults to the underlying DOM element's name). Required for the combo's value to automatically
-post during a form submission. See also valueField.
- Note: the hidden field's id will also default to this name if hiddenId is not specified.
-The ComboBox id and the hiddenId should be different, since
-no two DOM nodes should share the same id. So, if the ComboBox name and
-hiddenName are the same, you should specify a unique hiddenId. | ComboBox | | hiddenValue : StringSets the initial value of the hidden field if hiddenName is
-specified to contain the selected valueField, from the S... Sets the initial value of the hidden field if hiddenName is
-specified to contain the selected valueField, from the Store. Defaults to the configured
- value. | ComboBox | | hideLabel : Booleantrue to completely hide the label element
-(label and separator). Defaults to false.
+ hide method will be called internally. | Component | | hiddenId : StringIf hiddenName is specified, hiddenId can also be provided
+to give the hidden field a unique id (defaults to the hidde... If hiddenName is specified, hiddenId can also be provided
+to give the hidden field a unique id (defaults to the hiddenName). The hiddenId
+and combo id should be different, since no two DOM
+nodes should share the same id. | ComboBox | | hiddenName : StringIf specified, a hidden form field with this name is dynamically generated to store the
+field's data value (defaults t... If specified, a hidden form field with this name is dynamically generated to store the
+field's data value (defaults to the underlying DOM element's name). Required for the combo's value to automatically
+post during a form submission. See also valueField.
+ Note: the hidden field's id will also default to this name if hiddenId is not specified.
+The ComboBox id and the hiddenId should be different, since
+no two DOM nodes should share the same id. So, if the ComboBox name and
+hiddenName are the same, you should specify a unique hiddenId. | ComboBox | | hiddenValue : StringSets the initial value of the hidden field if hiddenName is
+specified to contain the selected valueField, from the St... Sets the initial value of the hidden field if hiddenName is
+specified to contain the selected valueField, from the Store. Defaults to the configured
+ value. | ComboBox | | hideLabel : Booleantrue to completely hide the label element
+(label and separator). Defaults to false.
By default, even if you do not sp... true to completely hide the label element
(label and separator). Defaults to false.
By default, even if you do not specify a fieldLabel the space will still be
@@ -178,17 +304,21 @@ Example use: new Ext.FormPanel({
xtype: 'textfield'
hideLabel: true
}]
-});
| Component | | hideMode : StringHow this component should be hidden. Supported values are 'visibility'
+}); | Component | | hideMode : StringHow this component should be hidden. Supported values are 'visibility'
(css visibility), 'offsets' (negative offset p... How this component should be hidden. Supported values are 'visibility'
(css visibility), 'offsets' (negative offset position) and 'display'
(css display).
Note: the default of 'display' is generally preferred
since items are automatically laid out when they are first shown (no sizing
-is done while hidden). | Component | | hideParent : BooleanTrue to hide and show the component's container when hide/show is called on the component, false to hide
+is done while hidden). | Component | | hideParent : BooleanTrue to hide and show the component's container when hide/show is called on the component, false to hide
and show the... True to hide and show the component's container when hide/show is called on the component, false to hide
and show the component itself (defaults to false). For example, this can be used as a shortcut for a hide
-button on a window by setting hide:true on the button when adding it to its parent container. | Component | | hideTrigger : Boolean true to hide the trigger element and display only the base
-text field (defaults to false) | TriggerField | | id : StringThe unique id of this component (defaults to an auto-assigned id).
+button on a window by setting hide:true on the button when adding it to its parent container. | Component | | hideTrigger : Boolean true to hide the trigger element and display only the base
+text field (defaults to false) | TriggerField | | html : String/ObjectAn HTML fragment, or a DomHelper specification to use as the layout element
+content (defaults to ''). The HTML conten... An HTML fragment, or a DomHelper specification to use as the layout element
+content (defaults to ''). The HTML content is added after the component is rendered,
+so the document will not contain this HTML at the time the render event is fired.
+This content is inserted into the body before any configured contentEl is appended. | Component | | id : StringThe unique id of this component (defaults to an auto-assigned id).
You should assign an id if you need to be able to ... The unique id of this component (defaults to an auto-assigned id).
You should assign an id if you need to be able to access the component later and you do
not have an object reference available (e.g., using Ext.getCmp).
@@ -198,13 +328,13 @@ rules to style the specific instance of this component uniquely, and also to sel
sub-elements using this component's id as the parent.
Note: to avoid complications imposed by a unique id also see
itemId and ref .
- Note: to access the container of an item see ownerCt . | Component | | inputType : StringThe type attribute for input fields -- e.g. radio, text, password, file (defaults
+ Note: to access the container of an item see ownerCt . | Component | | inputType : StringThe type attribute for input fields -- e.g. radio, text, password, file (defaults
to 'text'). The types 'file' and 'p... The type attribute for input fields -- e.g. radio, text, password, file (defaults
to 'text'). The types 'file' and 'password' must be used to render those field types currently -- there are
no separate Ext components for those. Note that if you use inputType:'file', emptyText
-is not supported and should be avoided. | Field | | invalidClass : String The CSS class to use when marking a field invalid (defaults to 'x-form-invalid') | Field | | invalidText : StringThe error text to use when marking a field invalid and no message is provided
+is not supported and should be avoided. | Field | | invalidClass : String The CSS class to use when marking a field invalid (defaults to 'x-form-invalid') | Field | | invalidText : StringThe error text to use when marking a field invalid and no message is provided
(defaults to 'The value in this field i... The error text to use when marking a field invalid and no message is provided
-(defaults to 'The value in this field is invalid') | Field | | itemCls : StringNote: this config is only used when this Component is rendered by a Container which
+(defaults to 'The value in this field is invalid') | Field | | itemCls : StringNote: this config is only used when this Component is rendered by a Container which
has been configured to use the Fo... Note: this config is only used when this Component is rendered by a Container which
has been configured to use the FormLayout layout manager (e.g.
Ext.form.FormPanel or specifying layout:'form').
@@ -233,7 +363,7 @@ Example use: // Apply a style to the field's label:
xtype: 'textfield',
fieldLabel: 'Favorite Color'
}]
-});
| Component | | itemId : StringAn itemId can be used as an alternative way to get a reference to a component
+}); | Component | | itemId : StringAn itemId can be used as an alternative way to get a reference to a component
when no object reference is available. ... An itemId can be used as an alternative way to get a reference to a component
when no object reference is available. Instead of using an id with
Ext.getCmp, use itemId with
@@ -262,14 +392,14 @@ avoiding potential conflicts with getComponent('p1'); // not the same as Ext.getCmp()
p2 = p1.ownerCt.getComponent('p2'); // reference via a sibling
Also see id and ref .
- Note: to access the container of an item see ownerCt. | Component | | itemSelector : StringA simple CSS selector (e.g. div.some-class or span:first-child) that will be
-used to determine what nodes the Ext.Da... A simple CSS selector (e.g. div.some-class or span:first-child) that will be
-used to determine what nodes the Ext.DataView which handles the dropdown
-display will be working with.
- Note: this setting is required if a custom XTemplate has been
-specified in tpl which assigns a class other than 'x-combo-list-item'
-to dropdown list items | ComboBox | | labelSeparator : StringThe separator to display after the text of each
-fieldLabel. This property may be configured at various levels.
+ Note: to access the container of an item see ownerCt. | Component | | itemSelector : StringA simple CSS selector (e.g. div.some-class or span:first-child) that will be
+used to determine what nodes the Ext.Dat... A simple CSS selector (e.g. div.some-class or span:first-child) that will be
+used to determine what nodes the Ext.DataView which handles the dropdown
+display will be working with.
+ Note: this setting is required if a custom XTemplate has been
+specified in tpl which assigns a class other than 'x-combo-list-item'
+to dropdown list items | ComboBox | | labelSeparator : StringThe separator to display after the text of each
+fieldLabel. This property may be configured at various levels.
The o... The separator to display after the text of each
fieldLabel. This property may be configured at various levels.
The order of precedence is:
@@ -297,7 +427,7 @@ Example use: new Ext.FormPanel({
xtype: 'textfield',
fieldLabel: 'Field 2' // labelSeparator will be '='
}]
-});
| Component | | labelStyle : StringA CSS style specification string to apply directly to this field's
+}); | Component | | labelStyle : StringA CSS style specification string to apply directly to this field's
label. Defaults to the container's labelStyle val... A CSS style specification string to apply directly to this field's
label. Defaults to the container's labelStyle value if set (e.g.,
Ext.layout.FormLayout.labelStyle , or '').
@@ -312,17 +442,19 @@ Example use: new Ext.FormPanel({
fieldLabel: 'Name',
labelStyle: 'font-weight:bold;'
}]
-});
| Component | | lazyInit : Boolean true to not initialize the list for this combo until the field is focused
-(defaults to true) | ComboBox | | lazyRender : Booleantrue to prevent the ComboBox from rendering until requested
-(should always be used when rendering into an Ext.Editor... true to prevent the ComboBox from rendering until requested
-(should always be used when rendering into an Ext.Editor (e.g. Grids),
-defaults to false). | ComboBox | | listAlign : StringA valid anchor position value. See Ext.Element.alignTo for details
-on supported anchor positions (defaults to 'tl-bl... A valid anchor position value. See Ext.Element.alignTo for details
-on supported anchor positions (defaults to 'tl-bl?') | ComboBox | | listClass : String The CSS class to add to the predefined 'x-combo-list' class
-applied the dropdown list element (defaults to ''). | ComboBox | | listEmptyText : String The empty text to display in the data view if no items are found.
-(defaults to '') | ComboBox | | listWidth : NumberThe width (used as a parameter to Ext.Element.setWidth) of the dropdown
-list (defaults to the width of the ComboBox ... | ComboBox | | listeners : ObjectA config object containing one or more event handlers to be added to this
+}); | Component | | lazyInit : Boolean true to not initialize the list for this combo until the field is focused
+(defaults to true) | ComboBox | | lazyRender : Booleantrue to prevent the ComboBox from rendering until requested
+(should always be used when rendering into an Ext.Editor ... true to prevent the ComboBox from rendering until requested
+(should always be used when rendering into an Ext.Editor (e.g. Grids),
+defaults to false). | ComboBox | | listAlign : String/ArrayA valid anchor position value. See Ext.Element.alignTo for details
+on supported anchor positions and offsets. To spec... A valid anchor position value. See Ext.Element.alignTo for details
+on supported anchor positions and offsets. To specify x/y offsets as well, this value
+may be specified as an Array of Ext.Element.alignTo method arguments.
+ [ 'tl-bl?', [6,0] ]
(defaults to 'tl-bl?') | ComboBox | | listClass : String The CSS class to add to the predefined 'x-combo-list' class
+applied the dropdown list element (defaults to ''). | ComboBox | | listEmptyText : String The empty text to display in the data view if no items are found.
+(defaults to '') | ComboBox | | listWidth : NumberThe width (used as a parameter to Ext.Element.setWidth) of the dropdown
+list (defaults to the width of the ComboBox f... | ComboBox | | listeners : ObjectA config object containing one or more event handlers to be added to this
object during initialization. This should ... A config object containing one or more event handlers to be added to this
object during initialization. This should be a valid listeners config object as specified in the
addListener example for attaching multiple handlers at once.
@@ -377,9 +509,9 @@ Ext.DomObserver = Ext.extend(Object, {
typeAhead: true,
mode: 'local',
triggerAction: 'all'
-}); | Observable | | loadingText : StringThe text to display in the dropdown list while data is loading. Only applies
-when mode = 'remote' (defaults to 'Loa... The text to display in the dropdown list while data is loading. Only applies
-when mode = 'remote' (defaults to 'Loading...') | ComboBox | | margins : ObjectNote: this config is only used when this BoxComponent is rendered
+}); | Observable | | loadingText : StringThe text to display in the dropdown list while data is loading. Only applies
+when mode = 'remote' (defaults to 'Load... The text to display in the dropdown list while data is loading. Only applies
+when mode = 'remote' (defaults to 'Loading...') | ComboBox | | margins : ObjectNote: this config is only used when this BoxComponent is rendered
by a Container which has been configured to use the... Note: this config is only used when this BoxComponent is rendered
by a Container which has been configured to use the BorderLayout
or one of the two BoxLayout subclasses.
@@ -401,8 +533,8 @@ to the second, and the bottom is set to the third.
If there are four values, they apply to the top, right, bottom, and left, respectively.
Defaults to: {top:0, right:0, bottom:0, left:0}
| BoxComponent | | maskRe : RegExp An input mask regular expression that will be used to filter keystrokes that do
-not match (defaults to null) | TextField | | maxHeight : Number The maximum height in pixels of the dropdown list before scrollbars are shown
-(defaults to 300) | ComboBox | | maxLength : NumberMaximum input field length allowed by validation (defaults to Number.MAX_VALUE).
+not match (defaults to null) | TextField | | maxHeight : Number The maximum height in pixels of the dropdown list before scrollbars are shown
+(defaults to 300) | ComboBox | | maxLength : NumberMaximum input field length allowed by validation (defaults to Number.MAX_VALUE).
This behavior is intended to provide... Maximum input field length allowed by validation (defaults to Number.MAX_VALUE).
This behavior is intended to provide instant feedback to the user by improving usability to allow pasting
and editing or overtyping and back tracking. To restrict the maximum number of characters that can be
@@ -413,75 +545,73 @@ any attributes you want to a field, for example: var myField =
fieldLabel: 'Mobile',
maxLength: 16, // for validation
autoCreate: {tag: 'input', type: 'text', size: '20', autocomplete: 'off', maxlength: '10'}
-});
| TextField | | maxLengthText : StringError text to display if the maximum length
+}); | TextField | | maxLengthText : StringError text to display if the maximum length
validation fails (defaults to 'The maximum length for this field is {maxL... Error text to display if the maximum length
-validation fails (defaults to 'The maximum length for this field is {maxLength}') | TextField | | minChars : NumberThe minimum number of characters the user must type before autocomplete and
-typeAhead activate (defaults to 4 if mod... The minimum number of characters the user must type before autocomplete and
- typeAhead activate (defaults to 4 if mode = 'remote' or 0 if
- mode = 'local', does not apply if
- editable = false). | ComboBox | | minHeight : NumberThe minimum height in pixels of the dropdown list when the list is constrained by its
-distance to the viewport edges... The minimum height in pixels of the dropdown list when the list is constrained by its
-distance to the viewport edges (defaults to 90) | ComboBox | | minLength : Number Minimum input field length required (defaults to 0) | TextField | | minLengthText : StringError text to display if the minimum length
+validation fails (defaults to 'The maximum length for this field is {maxLength}') | TextField | | minChars : NumberThe minimum number of characters the user must type before autocomplete and
+typeAhead activate (defaults to 4 if mode... The minimum number of characters the user must type before autocomplete and
+ typeAhead activate (defaults to 4 if mode = 'remote' or 0 if
+ mode = 'local', does not apply if
+ editable = false). | ComboBox | | minHeight : NumberThe minimum height in pixels of the dropdown list when the list is constrained by its
+distance to the viewport edges ... The minimum height in pixels of the dropdown list when the list is constrained by its
+distance to the viewport edges (defaults to 90) | ComboBox | | minLength : Number Minimum input field length required (defaults to 0) | TextField | | minLengthText : StringError text to display if the minimum length
validation fails (defaults to 'The minimum length for this field is {minL... Error text to display if the minimum length
-validation fails (defaults to 'The minimum length for this field is {minLength}') | TextField | | minListWidth : NumberThe minimum width of the dropdown list in pixels (defaults to 70, will
-be ignored if listWidth has a higher value) | ComboBox | | mode : StringAcceptable values are:
-<div class="mdetail-params">
-'remote' : Default
-<p class="sub-desc">Automatically loads the... Acceptable values are:
-
-- 'remote' : Default
-
Automatically loads the store the first time the trigger
-is clicked. If you do not want the store to be automatically loaded the first time the trigger is
-clicked, set to 'local' and manually load the store. To force a requery of the store
-every time the trigger is clicked see lastQuery.
-- 'local' :
-
ComboBox loads local data
-var combo = new Ext.form.ComboBox({
- renderTo: document.body,
- mode: 'local',
- store: new Ext.data.ArrayStore({
- id: 0,
- fields: [
- 'myId', // numeric value is the key
- 'displayText'
- ],
- data: [[1, 'item1'], [2, 'item2']] // data is local
- }),
- valueField: 'myId',
- displayField: 'displayText',
- triggerAction: 'all'
-});
+validation fails (defaults to 'The minimum length for this field is {minLength}') | TextField | | minListWidth : NumberThe minimum width of the dropdown list in pixels (defaults to 70, will
+be ignored if listWidth has a higher value) | ComboBox | | mode : StringAcceptable values are:
+<div class="mdetail-params">
+'remote' : Default
+<p class="sub-desc">Automatically loads the st... Acceptable values are:
+
+- 'remote' : Default
+
Automatically loads the store the first time the trigger
+is clicked. If you do not want the store to be automatically loaded the first time the trigger is
+clicked, set to 'local' and manually load the store. To force a requery of the store
+every time the trigger is clicked see lastQuery.
+- 'local' :
+
ComboBox loads local data
+var combo = new Ext.form.ComboBox({
+ renderTo: document.body,
+ mode: 'local',
+ store: new Ext.data.ArrayStore({
+ id: 0,
+ fields: [
+ 'myId', // numeric value is the key
+ 'displayText'
+ ],
+ data: [[1, 'item1'], [2, 'item2']] // data is local
+ }),
+ valueField: 'myId',
+ displayField: 'displayText',
+ triggerAction: 'all'
+});
| ComboBox | | msgFx : String Experimental The effect used when displaying a validation message under the field
-(defaults to 'normal'). | Field | | msgTarget : StringThe location where error text should display. Should be one of the following values
-(defaults to 'qtip'):
-
-Value ... The location where error text should display. Should be one of the following values
-(defaults to 'qtip'):
-
-Value Description
------------ ----------------------------------------------------------------------
-qtip Display a quick tip when the user hovers over the field
-title Display a default browser title attribute popup
-under Add a block div beneath the field containing the error text
-side Add an error icon to the right of the field with a popup on hover
-[element id] Add the error text directly to the innerHTML of the specified element
- | Field | | name : StringThe field's HTML name attribute (defaults to '').
+(defaults to 'normal'). | Field | | msgTarget<p>The : Stringlocation where the message text set through markInvalid should display.
+Must be one of the following values:
+<div cla... location where the message text set through markInvalid should display.
+Must be one of the following values:
+
+qtip Display a quick tip containing the message when the user hovers over the field. This is the default.
+
+title Display the message in a default browser title attribute popup.
+under Add a block div beneath the field containing the error message.
+side Add an error icon to the right of the field, displaying the message in a popup on hover.
+[element id] Add the error message directly to the innerHTML of the specified element.
+ | Field | | name : StringThe field's HTML name attribute (defaults to '').
Note: this property must be set if this field is to be automaticall... The field's HTML name attribute (defaults to '').
Note: this property must be set if this field is to be automatically included with
- form submit(). | Field | | overCls : StringAn optional extra CSS class that will be added to this component's Element when the mouse moves
+ form submit(). | Field | | overCls : StringAn optional extra CSS class that will be added to this component's Element when the mouse moves
over the Element, and... An optional extra CSS class that will be added to this component's Element when the mouse moves
over the Element, and removed when the mouse moves out. (defaults to ''). This can be
-useful for adding customized 'active' or 'hover' styles to the component or any of its children using standard CSS rules. | Component | | pageSize : NumberIf greater than 0, a Ext.PagingToolbar is displayed in the
-footer of the dropdown list and the filter queries will e... If greater than 0, a Ext.PagingToolbar is displayed in the
-footer of the dropdown list and the filter queries will execute with page start and
- limit parameters. Only applies when mode = 'remote'
-(defaults to 0). | ComboBox | | pageX : Number The page level x coordinate for this component if contained within a positioning container. | BoxComponent | | pageY : Number The page level y coordinate for this component if contained within a positioning container. | BoxComponent | | plugins : Object/ArrayAn object or array of objects that will provide custom functionality for this component. The only
+useful for adding customized 'active' or 'hover' styles to the component or any of its children using standard CSS rules. | Component | | pageSize : NumberIf greater than 0, a Ext.PagingToolbar is displayed in the
+footer of the dropdown list and the filter queries will ex... If greater than 0, a Ext.PagingToolbar is displayed in the
+footer of the dropdown list and the filter queries will execute with page start and
+ limit parameters. Only applies when mode = 'remote'
+(defaults to 0). | ComboBox | | pageX : Number The page level x coordinate for this component if contained within a positioning container. | BoxComponent | | pageY : Number The page level y coordinate for this component if contained within a positioning container. | BoxComponent | | plugins : Object/ArrayAn object or array of objects that will provide custom functionality for this component. The only
requirement for a ... An object or array of objects that will provide custom functionality for this component. The only
requirement for a valid plugin is that it contain an init method that accepts a reference of type Ext.Component.
When a component is created, if any plugins are available, the component will call the init method on each
plugin, passing a reference to itself. Each plugin can then call methods or respond to events on the
component as needed to provide its functionality. | Component | | preventMark : Boolean | Field | | ptype : StringThe registered ptype to create. This config option is not used when passing
+Defaults to false. | Field | | ptype : StringThe registered ptype to create. This config option is not used when passing
a config object into a constructor. This ... The registered ptype to create. This config option is not used when passing
a config object into a constructor. This config option is used only when
lazy instantiation is being used, and a Plugin is being
@@ -490,21 +620,16 @@ object. The ptype will be looked up at render time up to determine
type of Plugin to create.
If you create your own Plugins, you may register them using
Ext.ComponentMgr.registerPlugin in order to be able to
-take advantage of lazy instantiation and rendering. | Component | | queryDelay : NumberThe length of time in milliseconds to delay between the start of typing and
-sending the query to filter the dropdown... The length of time in milliseconds to delay between the start of typing and
-sending the query to filter the dropdown list (defaults to 500 if mode = 'remote'
-or 10 if mode = 'local') | ComboBox | | queryParam : StringName of the query ( baseParam name for the store)
-as it will be passed on the querystring (defaults to 'query') | ComboBox | | readOnly : Booleantrue to mark the field as readOnly in HTML
-(defaults to false).
-Note: this only sets the element's readOnly DOM attri... true to mark the field as readOnly in HTML
-(defaults to false).
- Note: this only sets the element's readOnly DOM attribute.
-Setting readOnly=true , for example, will not disable triggering a
-ComboBox or DateField; it gives you the option of forcing the user to choose
-via the trigger without typing in the text box. To hide the trigger use
-hideTrigger . | Field | | ref : StringA path specification, relative to the Component's ownerCt specifying into which
-ancestor Container to place a named r... A path specification, relative to the Component's ownerCt specifying into which
-ancestor Container to place a named reference to this Component.
+take advantage of lazy instantiation and rendering. | Component | | queryDelay : NumberThe length of time in milliseconds to delay between the start of typing and
+sending the query to filter the dropdown ... The length of time in milliseconds to delay between the start of typing and
+sending the query to filter the dropdown list (defaults to 500 if mode = 'remote'
+or 10 if mode = 'local') | ComboBox | | queryParam : StringName of the query ( baseParam name for the store)
+as it will be passed on the querystring (defaults to 'query') | ComboBox | | readOnly : Booleantrue to prevent the user from changing the field, and
+hides the trigger. Superceeds the editable and hideTrigger opt... true to prevent the user from changing the field, and
+hides the trigger. Superceeds the editable and hideTrigger options if the value is true.
+(defaults to false) | TriggerField | | ref : StringA path specification, relative to the Component's ownerCt
+specifying into which ancestor Container to place a named r... A path specification, relative to the Component's ownerCt
+specifying into which ancestor Container to place a named reference to this Component.
The ancestor axis can be traversed by using '/' characters in the path.
For example, to put a reference to a Toolbar Button into the Panel which owns the Toolbar: var myGrid = new Ext.grid.EditorGridPanel({
title: 'My EditorGridPanel',
@@ -523,18 +648,19 @@ For example, to put a reference to a Toolbar Button into the Panel which owns
}
}
});
- In the code above, if the ref had been 'saveButton' the reference would
-have been placed into the Toolbar. Each '/' in the ref moves up one level from the
-Component's ownerCt. | Component | | regex : RegExpA JavaScript RegExp object to be tested against the field value during validation
+ In the code above, if the ref had been 'saveButton'
+the reference would have been placed into the Toolbar. Each '/' in the ref
+moves up one level from the Component's ownerCt .
+ Also see the added and removed events. | Component | | regex : RegExpA JavaScript RegExp object to be tested against the field value during validation
(defaults to null). If the test fai... A JavaScript RegExp object to be tested against the field value during validation
(defaults to null). If the test fails, the field will be marked invalid using
regexText. | TextField | | regexText : StringThe error text to display if regex is used and the
-test fails during validation (defaults to '') | TextField | | region : StringNote: this config is only used when this BoxComponent is rendered
+test fails during validation (defaults to '') | TextField | | region : StringNote: this config is only used when this BoxComponent is rendered
by a Container which has been configured to use the... Note: this config is only used when this BoxComponent is rendered
by a Container which has been configured to use the BorderLayout
layout manager (e.g. specifying layout:'border').
- See Ext.layout.BorderLayout also. | BoxComponent | | renderTo : MixedSpecify the id of the element, a DOM element or an existing Element that this component
-will be rendered into.
+ See Ext.layout.BorderLayout also. | BoxComponent | | renderTo : MixedSpecify the id of the element, a DOM element or an existing Element that this component
+will be rendered into.
Notes ... Specify the id of the element, a DOM element or an existing Element that this component
will be rendered into.
- Notes :
@@ -545,27 +671,28 @@ to render and manage its child items.
When using this config, a call to render() is not required.
- See render also. | Component | | resizable : Booleantrue to add a resize handle to the bottom of the dropdown list
-(creates an Ext.Resizable with 'se' pinned handles).
... true to add a resize handle to the bottom of the dropdown list
-(creates an Ext.Resizable with 'se' pinned handles).
-Defaults to false. | ComboBox | | selectOnFocus : Booleantrue to select any existing text in the field immediately on focus.
-Only applies when editable = true (defaults to
-... true to select any existing text in the field immediately on focus.
-Only applies when editable = true (defaults to
- false). | ComboBox | | selectedClass : String CSS class to apply to the selected item in the dropdown list
-(defaults to 'x-combo-selected') | ComboBox | | shadow : Boolean/String true or "sides" for the default effect, "frame" for
-4-way shadow, and "drop" for bottom-right | ComboBox | | stateEvents : ArrayAn array of events that, when fired, should trigger this component to
+ See render also. | Component | | resizable : Booleantrue to add a resize handle to the bottom of the dropdown list
+(creates an Ext.Resizable with 'se' pinned handles).
+D... true to add a resize handle to the bottom of the dropdown list
+(creates an Ext.Resizable with 'se' pinned handles).
+Defaults to false. | ComboBox | | selectOnFocus : Booleantrue to select any existing text in the field immediately on focus.
+Only applies when editable = true (defaults to
+fa... true to select any existing text in the field immediately on focus.
+Only applies when editable = true (defaults to
+ false). | ComboBox | | selectedClass : String CSS class to apply to the selected item in the dropdown list
+(defaults to 'x-combo-selected') | ComboBox | | shadow : Boolean/String true or "sides" for the default effect, "frame" for
+4-way shadow, and "drop" for bottom-right | ComboBox | | stateEvents : ArrayAn array of events that, when fired, should trigger this component to
save its state (defaults to none). stateEvents ... An array of events that, when fired, should trigger this component to
save its state (defaults to none). stateEvents may be any type
of event supported by this component, including browser or custom events
(e.g., ['click', 'customerchange']).
See stateful for an explanation of saving and
-restoring Component state. | Component | | stateId : StringThe unique id for this component to use for state management purposes
+restoring Component state. | Component | | stateId : StringThe unique id for this component to use for state management purposes
(defaults to the component id if one was set, o... The unique id for this component to use for state management purposes
(defaults to the component id if one was set, otherwise null if the
component is using a generated id).
See stateful for an explanation of saving and
-restoring Component state. | Component | | stateful : BooleanA flag which causes the Component to attempt to restore the state of
+restoring Component state. | Component | | stateful : BooleanA flag which causes the Component to attempt to restore the state of
internal properties from a saved state on startu... A flag which causes the Component to attempt to restore the state of
internal properties from a saved state on startup. The component must have
either a stateId or id assigned
@@ -601,24 +728,24 @@ properties into the object, but a developer may override this to support
more behaviour.
You can perform extra processing on state save and restore by attaching
handlers to the beforestaterestore, staterestore,
-beforestatesave and statesave events. | Component | | store : Ext.data.Store/ArrayThe data source to which this combo is bound (defaults to undefined).
-Acceptable values for this property are:
-<div... The data source to which this combo is bound (defaults to undefined).
-Acceptable values for this property are:
-
-- any Store subclass
-- an Array : Arrays will be converted to a Ext.data.ArrayStore internally,
-automatically generating field names to work with all data components.
-
-- 1-dimensional array : (e.g., ['Foo','Bar'])
-A 1-dimensional array will automatically be expanded (each array item will be used for both the combo
- valueField and displayField)
-- 2-dimensional array : (e.g., [['f','Foo'],['b','Bar']])
-For a multi-dimensional array, the value in index 0 of each item will be assumed to be the combo
- valueField, while the value at index 1 is assumed to be the combo displayField.
-
+ beforestatesave and statesave events. | Component | | store : Ext.data.Store/ArrayThe data source to which this combo is bound (defaults to undefined).
+Acceptable values for this property are:
+<div c... The data source to which this combo is bound (defaults to undefined).
+Acceptable values for this property are:
+
+- any Store subclass
+- an Array : Arrays will be converted to a Ext.data.ArrayStore internally,
+automatically generating field names to work with all data components.
+
+- 1-dimensional array : (e.g., ['Foo','Bar'])
+A 1-dimensional array will automatically be expanded (each array item will be used for both the combo
+ valueField and displayField)
+- 2-dimensional array : (e.g., [['f','Foo'],['b','Bar']])
+For a multi-dimensional array, the value in index 0 of each item will be assumed to be the combo
+ valueField, while the value at index 1 is assumed to be the combo displayField.
+
See also mode. | ComboBox | | stripCharsRe : RegExp A JavaScript RegExp object used to strip unwanted content from the value
-before validation (defaults to null). | TextField | | style : StringA custom style specification to be applied to this component's Element. Should be a valid argument to
+before validation (defaults to null). | TextField | | style : StringA custom style specification to be applied to this component's Element. Should be a valid argument to
Ext.Element.ap... A custom style specification to be applied to this component's Element. Should be a valid argument to
Ext.Element.applyStyles.
new Ext.Panel({
@@ -641,58 +768,65 @@ Ext.Element.ap...
A custom style specification to be appl
}
})
]
-}); | Component | | tabIndex : NumberThe tabIndex for this field. Note this only applies to fields that are rendered,
+}); | Component | | submitValue : BooleanFalse to clear the name attribute on the field so that it is not submitted during a form post.
+If a hiddenName is spe... False to clear the name attribute on the field so that it is not submitted during a form post.
+If a hiddenName is specified, setting this to true will cause both the hidden field and the element to be submitted.
+Defaults to undefined. | ComboBox | | tabIndex : NumberThe tabIndex for this field. Note this only applies to fields that are rendered,
not those which are built via applyT... The tabIndex for this field. Note this only applies to fields that are rendered,
-not those which are built via applyTo (defaults to undefined). | Field | | tabTip : StringNote: this config is only used when this BoxComponent is a child item of a TabPanel.
+not those which are built via applyTo (defaults to undefined). | Field | | tabTip : StringNote: this config is only used when this BoxComponent is a child item of a TabPanel.
A string to be used as innerHTML... Note: this config is only used when this BoxComponent is a child item of a TabPanel.
A string to be used as innerHTML (html tags are accepted) to show in a tooltip when mousing over
the associated tab selector element. Ext.QuickTips.init()
-must be called in order for the tips to render. | BoxComponent | | title : StringIf supplied, a header element is created containing this text and added into the top of
-the dropdown list (defaults ... If supplied, a header element is created containing this text and added into the top of
-the dropdown list (defaults to undefined, with no header element) | ComboBox | | tpl : String/Ext.XTemplateThe template string, or Ext.XTemplate instance to
-use to display each item in the dropdown list. The dropdown list i... The template string, or Ext.XTemplate instance to
-use to display each item in the dropdown list. The dropdown list is displayed in a
-DataView. See view.
- The default template string is: '<tpl for="."><div class="x-combo-list-item">{' + this.displayField + '}</div></tpl>'
- Override the default value to create custom UI layouts for items in the list.
-For example: '<tpl for="."><div ext:qtip="{state}. {nick}" class="x-combo-list-item">{state}</div></tpl>'
- The template must contain one or more substitution parameters using field
-names from the Combo's Store. In the example above an
- ext:qtip attribute is added to display other fields from the Store.
- To preserve the default visual look of list items, add the CSS class name
- x-combo-list-item to the template's container element.
- Also see itemSelector for additional details. | ComboBox | | transform : MixedThe id, DOM node or element of an existing HTML SELECT to convert to a ComboBox.
-Note that if you specify this and t... | ComboBox | | triggerAction : StringThe action to execute when the trigger is clicked.
-<div class="mdetail-params">
-'query' : Default
-<p class="sub-de... The action to execute when the trigger is clicked.
-
- See also queryParam . | ComboBox | | triggerClass : StringAn additional CSS class used to style the trigger button. The trigger will always
-get the class 'x-form-trigger' an... An additional CSS class used to style the trigger button. The trigger will always
-get the class 'x-form-trigger' and triggerClass will be appended if specified
-(defaults to 'x-form-arrow-trigger' which displays a downward arrow icon). | ComboBox | | triggerConfig : MixedA DomHelper config object specifying the structure of the
-trigger element for this Field. (Optional).
-Specify this ... A DomHelper config object specifying the structure of the
-trigger element for this Field. (Optional).
- Specify this when you need a customized element to act as the trigger button for a TriggerField.
- Note that when using this option, it is the developer's responsibility to ensure correct sizing, positioning
-and appearance of the trigger. Defaults to:
- {tag: "img", src: Ext.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass}
| TriggerField | | typeAhead : Booleantrue to populate and autoselect the remainder of the text being
-typed after a configurable delay (typeAheadDelay) if... true to populate and autoselect the remainder of the text being
-typed after a configurable delay ( typeAheadDelay) if it matches a known value (defaults
-to false) | ComboBox | | typeAheadDelay : NumberThe length of time in milliseconds to wait until the typeahead text is displayed
-if typeAhead = true (defaults to 25... The length of time in milliseconds to wait until the typeahead text is displayed
+must be called in order for the tips to render. | BoxComponent | | title : StringIf supplied, a header element is created containing this text and added into the top of
+the dropdown list (defaults t... If supplied, a header element is created containing this text and added into the top of
+the dropdown list (defaults to undefined, with no header element) | ComboBox | | tpl : String/Ext.XTemplateThe template string, or Ext.XTemplate instance to
+use to display each item in the dropdown list. The dropdown list is... The template string, or Ext.XTemplate instance to
+use to display each item in the dropdown list. The dropdown list is displayed in a
+DataView. See view.
+ The default template string is: '<tpl for="."><div class="x-combo-list-item">{' + this.displayField + '}</div></tpl>'
+ Override the default value to create custom UI layouts for items in the list.
+For example: '<tpl for="."><div ext:qtip="{state}. {nick}" class="x-combo-list-item">{state}</div></tpl>'
+ The template must contain one or more substitution parameters using field
+names from the Combo's Store. In the example above an
+ ext:qtip attribute is added to display other fields from the Store.
+ To preserve the default visual look of list items, add the CSS class name
+ x-combo-list-item to the template's container element.
+ Also see itemSelector for additional details. | ComboBox | | tplWriteMode : StringThe Ext.(X)Template method to use when
+updating the content area of the Component. Defaults to 'overwrite'
+(see Ext.X... The Ext.(X)Template method to use when
+updating the content area of the Component. Defaults to 'overwrite'
+(see Ext.XTemplate.overwrite ). | Component | | transform : MixedThe id, DOM node or element of an existing HTML SELECT to convert to a ComboBox.
+Note that if you specify this and th... | ComboBox | | triggerAction : StringThe action to execute when the trigger is clicked.
+<div class="mdetail-params">
+'query' : Default
+<p class="sub-desc"... The action to execute when the trigger is clicked.
+
+ See also queryParam . | ComboBox | | triggerClass : StringAn additional CSS class used to style the trigger button. The trigger will always
+get the class 'x-form-trigger' and... An additional CSS class used to style the trigger button. The trigger will always
+get the class 'x-form-trigger' and triggerClass will be appended if specified
+(defaults to 'x-form-arrow-trigger' which displays a downward arrow icon). | ComboBox | | triggerConfig : MixedA DomHelper config object specifying the structure of the
+trigger element for this Field. (Optional).
+Specify this wh... A DomHelper config object specifying the structure of the
+trigger element for this Field. (Optional).
+ Specify this when you need a customized element to act as the trigger button for a TriggerField.
+ Note that when using this option, it is the developer's responsibility to ensure correct sizing, positioning
+and appearance of the trigger. Defaults to:
+ {tag: "img", src: Ext.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass}
| TriggerField | | typeAhead : Booleantrue to populate and autoselect the remainder of the text being
+typed after a configurable delay (typeAheadDelay) if ... true to populate and autoselect the remainder of the text being
+typed after a configurable delay ( typeAheadDelay) if it matches a known value (defaults
+to false) | ComboBox | | typeAheadDelay : NumberThe length of time in milliseconds to wait until the typeahead text is displayed
+if typeAhead = true (defaults to 250... The length of time in milliseconds to wait until the typeahead text is displayed
if typeAhead = true (defaults to 250) | ComboBox | | validateOnBlur : Boolean Whether the field should validate when it loses focus (defaults to true). | Field | | validationDelay : Number The length of time in milliseconds after user input begins until validation
-is initiated (defaults to 250) | Field | | validationEvent : String/BooleanThe event that should initiate field validation. Set to false to disable
+is initiated (defaults to 250) | Field | | validationEvent : String/BooleanThe event that should initiate field validation. Set to false to disable
automatic validation (defaults to 'key... The event that should initiate field validation. Set to false to disable
- automatic validation (defaults to 'keyup'). | Field | | validator : FunctionA custom validation function to be called during field validation (validateValue)
+ automatic validation (defaults to 'keyup'). | Field | | validator : FunctionA custom validation function to be called during field validation (validateValue)
(defaults to null). If specified, t... A custom validation function to be called during field validation (validateValue)
(defaults to null). If specified, this function will be called first, allowing the
developer to override the default validation process.
@@ -707,23 +841,23 @@ developer to override the default validation process.
true if the value is valid
msg : String
An error message if the value is invalid
- | TextField | | value : Mixed A value to initialize this field with (defaults to undefined). | Field | | valueField : StringThe underlying data value name to bind to this
-ComboBox (defaults to undefined if mode = 'remote' or 'field2' if
-tr... | ComboBox | | valueNotFoundText : StringWhen using a name/value combo, if the value passed to setValue is not found in
-the store, valueNotFoundText will be ... When using a name/value combo, if the value passed to setValue is not found in
-the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined). If this
-default text is used, it means there is no value set and no validation will occur on this field. | ComboBox | | vtype : String | TextField | | vtypeText : StringA custom error message to display in place of the default message provided
+ | TextField | | value : Mixed A value to initialize this field with (defaults to undefined). | Field | | valueField : StringThe underlying data value name to bind to this
+ComboBox (defaults to undefined if mode = 'remote' or 'field2' if
+tran... | ComboBox | | valueNotFoundText : StringWhen using a name/value combo, if the value passed to setValue is not found in
+the store, valueNotFoundText will be d... When using a name/value combo, if the value passed to setValue is not found in
+the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined). If this
+default text is used, it means there is no value set and no validation will occur on this field. | ComboBox | | vtype : String | TextField | | vtypeText : StringA custom error message to display in place of the default message provided
for the vtype currently set for this field... A custom error message to display in place of the default message provided
for the vtype currently set for this field (defaults to ''). Note:
-only applies if vtype is set, else ignored. | TextField | | width : NumberThe width of this component in pixels (defaults to auto).
+only applies if vtype is set, else ignored. | TextField | | width : NumberThe width of this component in pixels (defaults to auto).
Note to express this dimension as a percentage or offset se... The width of this component in pixels (defaults to auto).
- Note to express this dimension as a percentage or offset see Ext.Component.anchor. | BoxComponent | | wrapFocusClass : String The class added to the to the wrap of the trigger element. Defaults to
-x-trigger-wrap-focus. | TriggerField | | x : Number The local x (left) coordinate for this component if contained within a positioning container. | BoxComponent | | xtype : StringThe registered xtype to create. This config option is not used when passing
+ Note to express this dimension as a percentage or offset see Ext.Component.anchor. | BoxComponent | | wrapFocusClass : String The class added to the to the wrap of the trigger element. Defaults to
+x-trigger-wrap-focus. | TriggerField | | x : Number The local x (left) coordinate for this component if contained within a positioning container. | BoxComponent | | xtype : StringThe registered xtype to create. This config option is not used when passing
a config object into a constructor. This ... The registered xtype to create. This config option is not used when passing
a config object into a constructor. This config option is used only when
lazy instantiation is being used, and a child item of a Container is being
@@ -734,7 +868,7 @@ The predefined xtypes are listed Ext.ComponentMgr.registerType in order to be able to
-take advantage of lazy instantiation and rendering. | Component | | y : Number The local y (top) coordinate for this component if contained within a positioning container. | BoxComponent |
Public Properties|
| disabled : Boolean True if this component is disabled. Read-only. | Component | | el : Ext.ElementThe Ext.Element which encapsulates this Component. Read-only.
+take advantage of lazy instantiation and rendering. | Component | | y : Number The local y (top) coordinate for this component if contained within a positioning container. | BoxComponent |
Public Properties|
| disabled : Boolean True if this component is disabled. Read-only. | Component | | el : Ext.ElementThe Ext.Element which encapsulates this Component. Read-only.
This will usually be a <DIV> element created by the ... The Ext.Element which encapsulates this Component. Read-only.
This will usually be a <DIV> element created by the class's onRender method, but
that may be overridden using the autoEl config.
@@ -751,44 +885,51 @@ 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 | | lastQuery : StringThe value of the match string used to filter the store. Delete this property to force a requery.
-Example use:
-var c... The value of the match string used to filter the store. Delete this property to force a requery.
-Example use:
- var combo = new Ext.form.ComboBox({
- ...
- mode: 'remote',
- ...
- listeners: {
- // delete the previous query in the beforequery event or set
- // combo.lastQuery = null (this will reload the store the next time it expands)
- beforequery: function(qe){
- delete qe.combo.lastQuery;
- }
- }
-});
-To make sure the filter in the store is not cleared the first time the ComboBox trigger is used
-configure the combo with lastQuery=''. Example use:
- var combo = new Ext.form.ComboBox({
- ...
- mode: 'local',
- triggerAction: 'all',
- lastQuery: ''
-});
| ComboBox | | originalValue : mixedThe original value of the field as configured in the value configuration, or
+ 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
+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:
+var com... The value of the match string used to filter the store. Delete this property to force a requery.
+Example use:
+ var combo = new Ext.form.ComboBox({
+ ...
+ mode: 'remote',
+ ...
+ listeners: {
+ // delete the previous query in the beforequery event or set
+ // combo.lastQuery = null (this will reload the store the next time it expands)
+ beforequery: function(qe){
+ delete qe.combo.lastQuery;
+ }
+ }
+});
+To make sure the filter in the store is not cleared the first time the ComboBox trigger is used
+configure the combo with lastQuery=''. Example use:
+ var combo = new Ext.form.ComboBox({
+ ...
+ mode: 'local',
+ triggerAction: 'all',
+ lastQuery: ''
+});
| ComboBox | | originalValue : mixedThe original value of the field as configured in the value configuration, or
as loaded by the last form load operatio... The original value of the field as configured in the value configuration, or
as loaded by the last form load operation if the form's trackResetOnLoad
-setting is true . | Field | | ownerCt : Ext.ContainerThis Component's owner Container (defaults to undefined, and is set automatically when
+setting is true . | Field | | ownerCt : Ext.ContainerThis Component's owner Container (defaults to undefined, and is set automatically when
this Component is added to a C... This Component's owner Container (defaults to undefined, and is set automatically when
this Component is added to a Container). Read-only.
- Note: to access items within the Container see itemId. | Component | | rendered : Boolean True if this component has been rendered. Read-only. | Component | | view : Ext.DataViewThe DataView used to display the ComboBox's options. | ComboBox |
Public Methods|
| ComboBox( Object config )
- Create a new ComboBox. Create a new ComboBox. Parameters:config : ObjectConfiguration options Returns: | ComboBox | | addClass( string cls )
- :
- Ext.ComponentAdds a CSS class to the component's underlying element. Adds a CSS class to the component's underlying element. | Component | | addEvents( Object|String o , string Optional. )
- :
+Note: to access items within the Container see itemId. | Component | | refOwner : Ext.ContainerThe ancestor Container into which the ref reference was inserted if this Component
+is a child of a Container, and has... The ancestor Container into which the ref reference was inserted if this Component
+is a child of a Container, and has been configured with a ref . | Component | | rendered : Boolean True if this component has been rendered. Read-only. | Component | | startValue : mixedThe value that the Field had at the time it was last focused. This is the value that is passed
+to the change event wh... The value that the Field had at the time it was last focused. This is the value that is passed
+to the change event which is fired if the value has been changed when the Field is blurred.
+ This will be undefined until the Field has been visited. Compare originalValue. | Field | | view : Ext.DataViewThe DataView used to display the ComboBox's options. | ComboBox |
Public Methods|
| ComboBox( Object config )
+ Create a new ComboBox. Create a new ComboBox. Parameters:config : ObjectConfiguration options Returns: | ComboBox | | addClass( string cls )
+ :
+ Ext.ComponentAdds a CSS class to the component's underlying element. Adds a CSS class to the component's underlying element. | Component | | addEvents( Object|String o , string Optional. )
+ :
voidAdds the specified events to the list of events which this Observable may fire. Adds the specified events to the list of events which this Observable may fire. | Observable | | addListener( String eventName , Function handler , [Object scope ], [Object options ] )
- :
+Usage:this.addEvents('storeloaded', 'storecleared'); Returns: | Observable | | addListener( String eventName , Function handler , [Object scope ], [Object options ] )
+ :
voidAppends an event handler to this object. Appends an event handler to this object. Parameters:eventName : StringThe name of the event to listen for. handler : FunctionThe method the event invokes. scope : Object(optional) The scope (this reference) in which the handler function is executed.
If omitted, defaults to the object which fired the event. options : Object(optional) An object containing handler configuration.
properties. This may contain any of the following properties:
@@ -838,49 +979,49 @@ Or a shorthand syntax:
'mouseover' : this.onMouseOver,
'mouseout' : this.onMouseOut,
scope: this
-}); Returns: | Observable | | applyToMarkup( String/HTMLElement el )
- :
- voidApply this component to existing markup that is valid. With this function, no call to render() is required. Apply this component to existing markup that is valid. With this function, no call to render() is required. | Component | | clearInvalid()
- :
- voidClear any invalid styles/messages for this field Clear any invalid styles/messages for this field | Field | | clearValue()
- :
- voidClears any text/value currently set in the field Clears any text/value currently set in the field | ComboBox | | cloneConfig( Object overrides )
- :
+});Returns: | Observable | | applyToMarkup( String/HTMLElement el )
+ :
+ voidApply this component to existing markup that is valid. With this function, no call to render() is required. Apply this component to existing markup that is valid. With this function, no call to render() is required. | Component | | clearInvalid()
+ :
+ voidClear any invalid styles/messages for this field Clear any invalid styles/messages for this field | Field | | clearValue()
+ :
+ voidClears any text/value currently set in the field Clears any text/value currently set in the field | ComboBox | | cloneConfig( Object overrides )
+ :
Ext.ComponentClone the current component using the original config values passed into this instance by default. Clone the current component using the original config values passed into this instance by default. | Component | | collapse()
- :
- voidHides the dropdown list if it is currently expanded. Fires the collapse event on completion. Hides the dropdown list if it is currently expanded. Fires the collapse event on completion. | ComboBox | | destroy()
- :
- voidDestroys this component by purging any event listeners, removing the component's element from the DOM,
+An id property can be passed on this object, otherwise one will be generated to avoid duplicates. Returns: | Component | | collapse()
+ :
+ voidHides the dropdown list if it is currently expanded. Fires the collapse event on completion. Hides the dropdown list if it is currently expanded. Fires the collapse event on completion. | ComboBox | | destroy()
+ :
+ voidDestroys this component by purging any event listeners, removing the component's element from the DOM,
removing the c... Destroys this component by purging any event listeners, removing the component's element from the DOM,
removing the component from its Ext.Container (if applicable) and unregistering it from
Ext.ComponentMgr. Destruction is generally handled automatically by the framework and this method
-should usually not need to be called directly. | Component | | disable()
- :
- Ext.ComponentDisable this component and fire the 'disable' event. Disable this component and fire the 'disable' event. | Component | | doQuery( String query , Boolean forceAll )
- :
- voidExecute a query to filter the dropdown list. Fires the beforequery event prior to performing the
-query allowing the... Execute a query to filter the dropdown list. Fires the beforequery event prior to performing the
-query allowing the query action to be canceled if needed. Parameters:query : StringThe SQL query to execute forceAll : Booleantrue to force the query to execute even if there are currently fewer
-characters in the field than the minimum specified by the minChars config option. It
-also clears any filter previously saved in the current store (defaults to false) Returns: | ComboBox | | enable()
- :
- Ext.ComponentEnable this component and fire the 'enable' event. Enable this component and fire the 'enable' event. | Component | | enableBubble( Object events )
- :
- voidEnables events fired by this Observable to bubble up an owner hierarchy by calling
+should usually not need to be called directly. | Component | | disable()
+ :
+ Ext.ComponentDisable this component and fire the 'disable' event. Disable this component and fire the 'disable' event. | Component | | doQuery( String query , Boolean forceAll )
+ :
+ voidExecute a query to filter the dropdown list. Fires the beforequery event prior to performing the
+query allowing the ... Execute a query to filter the dropdown list. Fires the beforequery event prior to performing the
+query allowing the query action to be canceled if needed. Parameters:query : StringThe SQL query to execute forceAll : Booleantrue to force the query to execute even if there are currently fewer
+characters in the field than the minimum specified by the minChars config option. It
+also clears any filter previously saved in the current store (defaults to false) Returns: | ComboBox | | enable()
+ :
+ Ext.ComponentEnable this component and fire the 'enable' event. Enable this component and fire the 'enable' event. | Component | | enableBubble( String/Array events )
+ :
+ voidEnables events fired by this Observable to bubble up an owner hierarchy by calling
this.getBubbleTarget() if present... Enables events fired by this Observable to bubble up an owner hierarchy by calling
this.getBubbleTarget() if present. There is no implementation in the Observable base class.
This is commonly used by Ext.Components to bubble events to owner Containers. See Ext.Component.getBubbleTarget. The default
implementation in Ext.Component returns the Component's immediate owner. But if a known target is required, this can be overridden to
access the required target more quickly.
Example: Ext.override(Ext.form.Field, {
-// Add functionality to Field's initComponent to enable the change event to bubble
- initComponent: Ext.form.Field.prototype.initComponent.createSequence(function() {
- this.enableBubble('change');
+ // Add functionality to Field's initComponent to enable the change event to bubble
+ initComponent : Ext.form.Field.prototype.initComponent.createSequence(function() {
+ this.enableBubble('change');
}),
-// We know that we want Field's events to bubble directly to the FormPanel.
- getBubbleTarget: function() {
+ // We know that we want Field's events to bubble directly to the FormPanel.
+ getBubbleTarget : function() {
if (!this.formPanel) {
this.formPanel = this.findParentByType('form');
}
@@ -895,32 +1036,34 @@ access the required target more quickly.
}],
listeners: {
change: function() {
-// Title goes red if form has been modified.
- myForm.header.setStyle("color", "red");
+ // Title goes red if form has been modified.
+ myForm.header.setStyle('color', 'red');
}
}
-});
| Observable | | expand()
- :
- voidExpands the dropdown list if it is currently hidden. Fires the expand event on completion. Expands the dropdown list if it is currently hidden. Fires the expand event on completion. | ComboBox | | findParentBy( Function fn )
- :
- Ext.ContainerFind a container above this component at any level by a custom function. If the passed function returns
+}); | Observable | | expand()
+ :
+ voidExpands the dropdown list if it is currently hidden. Fires the expand event on completion. Expands the dropdown list if it is currently hidden. Fires the expand event on completion. | ComboBox | | findParentBy( Function fn )
+ :
+ Ext.ContainerFind a container above this component at any level by a custom function. If the passed function returns
true, the con... Find a container above this component at any level by a custom function. If the passed function returns
-true, the container will be returned. | Component | | findParentByType( String/Class xtype )
- :
- Ext.ContainerFind a container above this component at any level by xtype or class Find a container above this component at any level by xtype or class | Component | | fireEvent( String eventName , Object... args )
- :
- BooleanFires the specified event with the passed parameters (minus the event name).
+true, the container will be returned. | Component | | findParentByType( String/Class xtype )
+ :
+ Ext.ContainerFind a container above this component at any level by xtype or class Find a container above this component at any level by xtype or class | Component | | fireEvent( String eventName , Object... args )
+ :
+ BooleanFires the specified event with the passed parameters (minus the event name).
An event may be set to bubble up an Obse... | Observable | | focus( [Boolean selectText ], [Boolean/Number delay ] )
- :
- Ext.ComponentTry to focus this component. Try to focus this component. Parameters:selectText : Boolean(optional) If applicable, true to also select the text in this component delay : Boolean/Number(optional) Delay the focus this number of milliseconds (true for 10 milliseconds) Returns: | Component | | getBox( [Boolean local ] )
- :
- ObjectGets the current box measurements of the component's underlying element. Gets the current box measurements of the component's underlying element. | BoxComponent | | getBubbleTarget()
- :
- Ext.ContainerProvides the link for Observable's fireEvent method to bubble up the ownership hierarchy. Provides the link for Observable's fireEvent method to bubble up the ownership hierarchy. | Component | | getEl()
- :
- Ext.ElementReturns the Ext.Element which encapsulates this Component.
+by calling enableBubble. | Observable | | focus( [Boolean selectText ], [Boolean/Number delay ] )
+ :
+ Ext.ComponentTry to focus this component. Try to focus this component. Parameters:selectText : Boolean(optional) If applicable, true to also select the text in this component delay : Boolean/Number(optional) Delay the focus this number of milliseconds (true for 10 milliseconds) Returns: | Component | | getActiveError()
+ :
+ StringGets the active error message for this field. Gets the active error message for this field. | Field | | getBox( [Boolean local ] )
+ :
+ ObjectGets the current box measurements of the component's underlying element. Gets the current box measurements of the component's underlying element. | BoxComponent | | getBubbleTarget()
+ :
+ Ext.ContainerProvides the link for Observable's fireEvent method to bubble up the ownership hierarchy. Provides the link for Observable's fireEvent method to bubble up the ownership hierarchy. | Component | | getEl()
+ :
+ Ext.ElementReturns the Ext.Element which encapsulates this Component.
This will usually be a <DIV> element created by the cla... Returns the Ext.Element which encapsulates this Component.
This will usually be a <DIV> element created by the class's onRender method, but
that may be overridden using the autoEl config.
@@ -936,67 +1079,67 @@ or use a render listener directly: new Ext.Panel({
},
single: true // Remove the listener after first invocation
}
-});
| Component | | getHeight()
- :
- NumberGets the current height of the component's underlying element. Gets the current height of the component's underlying element. | BoxComponent | | getId()
- :
- StringReturns the id of this component or automatically generates and
+}); | Component | | getHeight()
+ :
+ NumberGets the current height of the component's underlying element. Gets the current height of the component's underlying element. | BoxComponent | | getId()
+ :
+ StringReturns the id of this component or automatically generates and
returns an id if an id is not defined yet:'ext-comp-'... Returns the id of this component or automatically generates and
-returns an id if an id is not defined yet: 'ext-comp-' + (++Ext.Component.AUTO_ID)
| Component | | getItemId()
- :
- StringReturns the itemId of this component. If an
-itemId was not assigned through configuration the
+returns an id if an id is not defined yet: 'ext-comp-' + (++Ext.Component.AUTO_ID)
| Component | | getItemId()
+ :
+ StringReturns the itemId of this component. If an
+itemId was not assigned through configuration the
id is returned using g... Returns the itemId of this component. If an
itemId was not assigned through configuration the
- id is returned using getId . | Component | | getListParent()
- :
- voidReturns the element used to house this ComboBox's pop-up list. Defaults to the document body.
-A custom implementatio... Returns the element used to house this ComboBox's pop-up list. Defaults to the document body.
-A custom implementation may be provided as a configuration option if the floating list needs to be rendered
-to a different Element. An example might be rendering the list inside a Menu so that clicking
-the list does not hide the Menu: var store = new Ext.data.ArrayStore({
- autoDestroy: true,
- fields: ['initials', 'fullname'],
- data : [
- ['FF', 'Fred Flintstone'],
- ['BR', 'Barney Rubble']
- ]
-});
-
-var combo = new Ext.form.ComboBox({
- store: store,
- displayField: 'fullname',
- emptyText: 'Select a name...',
- forceSelection: true,
- getListParent: function() {
- return this.el.up('.x-menu');
- },
- iconCls: 'no-icon', //use iconCls if placing within menu to shift to right side of menu
- mode: 'local',
- selectOnFocus: true,
- triggerAction: 'all',
- typeAhead: true,
- width: 135
-});
-
-var menu = new Ext.menu.Menu({
- id: 'mainMenu',
- items: [
- combo // A Field in a Menu
- ]
-});
| ComboBox | | getName()
- :
- StringReturns the name or hiddenName
+ id is returned using getId . | Component | | getListParent()
+ :
+ voidReturns the element used to house this ComboBox's pop-up list. Defaults to the document body.
+A custom implementation... Returns the element used to house this ComboBox's pop-up list. Defaults to the document body.
+A custom implementation may be provided as a configuration option if the floating list needs to be rendered
+to a different Element. An example might be rendering the list inside a Menu so that clicking
+the list does not hide the Menu: var store = new Ext.data.ArrayStore({
+ autoDestroy: true,
+ fields: ['initials', 'fullname'],
+ data : [
+ ['FF', 'Fred Flintstone'],
+ ['BR', 'Barney Rubble']
+ ]
+});
+
+var combo = new Ext.form.ComboBox({
+ store: store,
+ displayField: 'fullname',
+ emptyText: 'Select a name...',
+ forceSelection: true,
+ getListParent: function() {
+ return this.el.up('.x-menu');
+ },
+ iconCls: 'no-icon', //use iconCls if placing within menu to shift to right side of menu
+ mode: 'local',
+ selectOnFocus: true,
+ triggerAction: 'all',
+ typeAhead: true,
+ width: 135
+});
+
+var menu = new Ext.menu.Menu({
+ id: 'mainMenu',
+ items: [
+ combo // A Field in a Menu
+ ]
+});
| ComboBox | | getName()
+ :
+ StringReturns the name or hiddenName
attribute of the field if available. | Field | | getOuterSize()
- :
- ObjectGets the current size of the component's underlying element, including space taken by its margins. Gets the current size of the component's underlying element, including space taken by its margins. | BoxComponent | | getPosition( [Boolean local ] )
- :
- ArrayGets the current XY position of the component's underlying element. Gets the current XY position of the component's underlying element. | BoxComponent | | getRawValue()
- :
- MixedReturns the raw data value which may or may not be a valid, defined value. To return a normalized value see getValue... Returns the raw data value which may or may not be a valid, defined value. To return a normalized value see getValue. Parameters:Returns:Mixed value The field value
| Field | | getResizeEl()
- :
- voidReturns the outermost Element of this Component which defines the Components overall size.
+attribute of the field if available. | Field | | getOuterSize()
+ :
+ ObjectGets the current size of the component's underlying element, including space taken by its margins. Gets the current size of the component's underlying element, including space taken by its margins. | BoxComponent | | getPosition( [Boolean local ] )
+ :
+ ArrayGets the current XY position of the component's underlying element. Gets the current XY position of the component's underlying element. | BoxComponent | | getRawValue()
+ :
+ MixedReturns the raw data value which may or may not be a valid, defined value. To return a normalized value see getValue... Returns the raw data value which may or may not be a valid, defined value. To return a normalized value see getValue. Parameters:Returns:Mixed value The field value
| Field | | getResizeEl()
+ :
+ Ext.ElementReturns the outermost Element of this Component which defines the Components overall size.
Usually this will return t... Returns the outermost Element of this Component which defines the Components overall size.
Usually this will return the same Element as getEl ,
but in some cases, a Component may have some more wrapping Elements around its main
@@ -1004,59 +1147,59 @@ active Element.
An example is a ComboBox. It is encased in a wrapping Element which
contains both the <input> Element (which is what would be returned
by its getEl method, and the trigger button Element.
-This Element is returned as the resizeEl . | BoxComponent | | getSize()
- :
- ObjectGets the current size of the component's underlying element. Gets the current size of the component's underlying element. | BoxComponent | | getStore()
- :
- Ext.data.StoreReturns the store associated with this combo. Returns the store associated with this combo. | ComboBox | | getValue()
- :
- StringReturns the currently selected field value or empty string if no value is set. Returns the currently selected field value or empty string if no value is set. Parameters:Returns:String value The selected value
| ComboBox | | getWidth()
- :
- NumberGets the current width of the component's underlying element. Gets the current width of the component's underlying element. | BoxComponent | | getXType()
- :
- StringGets the xtype for this component as registered with Ext.ComponentMgr. For a list of all
+This Element is returned as the resizeEl . | BoxComponent | | getSize()
+ :
+ ObjectGets the current size of the component's underlying element. Gets the current size of the component's underlying element. | BoxComponent | | getStore()
+ :
+ Ext.data.StoreReturns the store associated with this combo. Returns the store associated with this combo. | ComboBox | | getValue()
+ :
+ StringReturns the currently selected field value or empty string if no value is set. Returns the currently selected field value or empty string if no value is set. Parameters:Returns:String value The selected value
| ComboBox | | getWidth()
+ :
+ NumberGets the current width of the component's underlying element. Gets the current width of the component's underlying element. | BoxComponent | | getXType()
+ :
+ StringGets the xtype for this component as registered with Ext.ComponentMgr. For a list of all
available xtypes, see the Ex... Gets the xtype for this component as registered with Ext.ComponentMgr. For a list of all
available xtypes, see the Ext.Component header. Example usage:
var t = new Ext.form.TextField();
-alert(t.getXType()); // alerts 'textfield'
| Component | | getXTypes()
- :
- StringReturns this Component's xtype hierarchy as a slash-delimited string. For a list of all
+alert(t.getXType()); // alerts 'textfield' | Component | | getXTypes()
+ :
+ StringReturns this Component's xtype hierarchy as a slash-delimited string. For a list of all
available xtypes, see the Ext... Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all
available xtypes, see the Ext.Component header.
If using your own subclasses, be aware that a Component must register its own xtype
to participate in determination of inherited xtypes.
Example usage:
var t = new Ext.form.TextField();
-alert(t.getXTypes()); // alerts 'component/box/field/textfield'
| Component | | hasListener( String eventName )
- :
- BooleanChecks to see if this object has any listeners for a specified event Checks to see if this object has any listeners for a specified event | Observable | | hide()
- :
- Ext.ComponentHide this component. Listen to the 'beforehide' event and return
+alert(t.getXTypes()); // alerts 'component/box/field/textfield' | Component | | hasListener( String eventName )
+ :
+ BooleanChecks to see if this object has any listeners for a specified event Checks to see if this object has any listeners for a specified event | Observable | | hide()
+ :
+ Ext.ComponentHide this component. Listen to the 'beforehide' event and return
false to cancel hiding the component. Fires the 'h... Hide this component. Listen to the ' beforehide' event and return
false to cancel hiding the component. Fires the ' hide'
event after hiding the component. Note this method is called internally if
-the component is configured to be hidden . | Component | | isDirty()
- :
- BooleanReturns true if the value of this Field has been changed from its original value.
+the component is configured to be hidden . | Component | | isDirty()
+ :
+ BooleanReturns true if the value of this Field has been changed from its original value.
Will return false if the field is d... Returns true if the value of this Field has been changed from its original value.
Will return false if the field is disabled or has not been rendered yet.
Note that if the owning form was configured with
Ext.form.BasicForm.trackResetOnLoad
then the original value is updated when the values are loaded by
-Ext.form.BasicForm.setValues. | Field | | isExpanded()
- :
- voidReturns true if the dropdown list is expanded, else false. Returns true if the dropdown list is expanded, else false. | ComboBox | | isValid( Boolean preventMark )
- :
- Boolean | Field | | isExpanded()
+ :
+ voidReturns true if the dropdown list is expanded, else false. Returns true if the dropdown list is expanded, else false. | ComboBox | | isValid( Boolean preventMark )
+ :
+ BooleanReturns whether or not the field value is currently valid by
+validating the processed value
of the field. Note: disab... | Field | | isVisible()
- :
- BooleanReturns true if this component is visible. Returns true if this component is visible. | Component | | isXType( String xtype , [Boolean shallow ] )
- :
- BooleanTests whether or not this Component is of a specific xtype. This can test whether this Component is descended
+of the field. Note: disabled fields are ignored. | Field | | isVisible()
+ :
+ BooleanReturns true if this component is visible. Returns true if this component is visible. | Component | | isXType( String xtype , [Boolean shallow ] )
+ :
+ BooleanTests whether or not this Component is of a specific xtype. This can test whether this Component is descended
from th... Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended
from the xtype (default) or whether it is directly of the xtype specified (shallow = true).
If using your own subclasses, be aware that a Component must register its own xtype
@@ -1067,36 +1210,57 @@ to participate in determination of inherited xtypes.
var isText = t.isXType( 'textfield'); // true
var isBoxSubclass = t.isXType( 'box'); // true, descended from BoxComponent
var isBoxInstance = t.isXType( 'box', true); // false, not a direct BoxComponent instanceParameters:xtype : StringThe xtype to check for this Component shallow : Boolean(optional) False to check whether this Component is descended from the xtype (this is
-the default), or true to check whether this Component is directly of the specified xtype. Returns: | Component | | markInvalid( [String msg ] )
- :
- voidMark this field as invalid, using msgTarget to determine how to
-display the error and applying invalidClass to the fi... Mark this field as invalid, using msgTarget to determine how to
-display the error and applying invalidClass to the field's element.
- Note: this method does not actually make the field
- invalid. Parameters:msg : String(optional) The validation message (defaults to invalidText) Returns: | Field | | nextSibling()
- :
- Ext.ComponentReturns the next component in the owning container Returns the next component in the owning container | Component | | on( String eventName , Function handler , [Object scope ], [Object options ] )
- :
+the default), or true to check whether this Component is directly of the specified xtype.Returns: | Component | | markInvalid( [String msg ] )
+ :
+ voidDisplay an error message associated with this field, using msgTarget to determine how to
+display the message and appl... Display an error message associated with this field, using msgTarget to determine how to
+display the message and applying invalidClass to the field's UI element.
+ Note: this method does not cause the Field's validate method to return false
+if the value does pass validation. So simply marking a Field as invalid will not prevent
+submission of forms submitted with the Ext.form.Action.Submit.clientValidation option set.
+ invalid. Parameters:msg : String(optional) The validation message (defaults to invalidText) Returns: | Field | | mon( Observable|Element item , Object|String ename , Function fn , Object scope , Object opt )
+ :
+ voidAdds listeners to any Observable object (or Elements) which are automatically removed when this Component
+is destroye... Adds listeners to any Observable object (or Elements) which are automatically removed when this Component
+is destroyed. Usage:
+myGridPanel.mon(myGridPanel.getSelectionModel(), 'selectionchange', handleSelectionChange, null, {buffer: 50});
+
+ or:
+myGridPanel.mon(myGridPanel.getSelectionModel(), {
+ selectionchange: handleSelectionChange,
+ buffer: 50
+});
+
Parameters:item : Observable|ElementThe item to which to add a listener/listeners. ename : Object|StringThe event name, or an object containing event name properties. fn : FunctionOptional. If the ename parameter was an event name, this
+is the handler function. scope : ObjectOptional. If the ename parameter was an event name, this
+is the scope (this reference) in which the handler function is executed. opt : ObjectOptional. If the ename parameter was an event name, this
+is the addListener options. Returns: | Component | | mun( Observable|Element item , Object|String ename , Function fn , Object scope )
+ :
+ voidRemoves listeners that were added by the mon method. Removes listeners that were added by the mon method. Parameters:item : Observable|ElementThe item from which to remove a listener/listeners. ename : Object|StringThe event name, or an object containing event name properties. fn : FunctionOptional. If the ename parameter was an event name, this
+is the handler function. scope : ObjectOptional. If the ename parameter was an event name, this
+is the scope (this reference) in which the handler function is executed. Returns: | Component | | nextSibling()
+ :
+ Ext.ComponentReturns the next component in the owning container Returns the next component in the owning container | Component | | on( String eventName , Function handler , [Object scope ], [Object options ] )
+ :
voidAppends an event handler to this object (shorthand for addListener.) Appends an event handler to this object (shorthand for addListener.) Parameters:eventName : StringThe type of event to listen for handler : FunctionThe method the event invokes scope : Object(optional) The scope (this reference) in which the handler function is executed.
-If omitted, defaults to the object which fired the event. options : Object(optional) An object containing handler configuration. Returns: | Observable | | previousSibling()
- :
- Ext.ComponentReturns the previous component in the owning container Returns the previous component in the owning container | Component | | processValue( Mixed value )
- :
- voidThis method should only be overridden if necessary to prepare raw values
+If omitted, defaults to the object which fired the event. options : Object(optional) An object containing handler configuration. Returns: | Observable | | previousSibling()
+ :
+ Ext.ComponentReturns the previous component in the owning container Returns the previous component in the owning container | Component | | processValue( Mixed value )
+ :
+ voidThis method should only be overridden if necessary to prepare raw values
for validation (see validate and isValid). ... This method should only be overridden if necessary to prepare raw values
for validation (see validate and isValid). This method
is expected to return the processed value for the field which will
-be used for validation (see validateValue method). | Field | | purgeListeners()
- :
- voidRemoves all listeners for this object Removes all listeners for this object | Observable | | relayEvents( Object o , Array events )
- :
- voidRelays selected events from the specified Observable as if the events were fired by this. Relays selected events from the specified Observable as if the events were fired by this. | Observable | | removeClass( string cls )
- :
- Ext.ComponentRemoves a CSS class from the component's underlying element. Removes a CSS class from the component's underlying element. | Component | | removeListener( String eventName , Function handler , [Object scope ] )
- :
- voidRemoves an event handler. Removes an event handler. | Observable | | render( [Element/HTMLElement/String container ], [String/Number position ] )
- :
- voidRender this Component into the passed HTML element.
+be used for validation (see validateValue method). | Field | | purgeListeners()
+ :
+ voidRemoves all listeners for this object Removes all listeners for this object | Observable | | relayEvents( Object o , Array events )
+ :
+ voidRelays selected events from the specified Observable as if the events were fired by this. Relays selected events from the specified Observable as if the events were fired by this. | Observable | | removeClass( string cls )
+ :
+ Ext.ComponentRemoves a CSS class from the component's underlying element. Removes a CSS class from the component's underlying element. | Component | | removeListener( String eventName , Function handler , [Object scope ] )
+ :
+ voidRemoves an event handler. Removes an event handler. | Observable | | render( [Element/HTMLElement/String container ], [String/Number position ] )
+ :
+ voidRender this Component into the passed HTML element.
If you are using a Container object to house this Component, then... Render this Component into the passed HTML element.
If you are using a Container object to house this Component, then
do not use the render method.
@@ -1118,54 +1282,63 @@ have in mind.
layout manager is used which does nothing but render child components sequentially into the
Container. No sizing or positioning will be performed in this situation. Parameters:container : Element/HTMLElement/String(optional) The element this Component should be
rendered into. If it is being created from existing markup, this should be omitted. position : String/Number(optional) The element ID or DOM node index within the container before
-which this component will be inserted (defaults to appending to the end of the container) Returns: | Component | | reset()
- :
- voidResets the current field value to the originally-loaded value and clears any validation messages.
+which this component will be inserted (defaults to appending to the end of the container) Returns: | Component | | reset()
+ :
+ voidResets the current field value to the originally-loaded value and clears any validation messages.
Also adds emptyText... Resets the current field value to the originally-loaded value and clears any validation messages.
Also adds emptyText and emptyClass if the
-original value was blank. | TextField | | resumeEvents()
- :
- voidResume firing events. (see suspendEvents)
-If events were suspended using the queueSuspended parameter, then all
+original value was blank. | TextField | | resumeEvents()
+ :
+ voidResume firing events. (see suspendEvents)
+If events were suspended using the queueSuspended parameter, then all
event... Resume firing events. (see suspendEvents)
If events were suspended using the queueSuspended parameter, then all
-events fired during event suspension will be sent to any listeners now. | Observable | | select( Number index , Boolean scrollIntoView )
- :
- voidSelect an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event t... Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
-The store must be loaded and the list expanded for this function to work, otherwise use setValue. | ComboBox | | selectByValue( String value , Boolean scrollIntoView )
- :
- BooleanSelect an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
-The st... Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
-The store must be loaded and the list expanded for this function to work, otherwise use setValue. | ComboBox | | selectText( [Number start ], [Number end ] )
- :
- voidSelects text in this field Selects text in this field | TextField | | setDisabled( Boolean disabled )
- :
- Ext.ComponentConvenience function for setting disabled/enabled by boolean. Convenience function for setting disabled/enabled by boolean. | Component | | setEditable( Boolean value )
- :
- voidAllow or prevent the user from directly editing the field text. If false is passed,
-the user will only be able to m... Allow or prevent the user from directly editing the field text. If false is passed,
-the user will only be able to modify the field using the trigger. This method
-is the runtime equivalent of setting the 'editable' config option at config time. | TriggerField | | setHeight( Number height )
- :
+events fired during event suspension will be sent to any listeners now. | Observable | | select( Number index , Boolean scrollIntoView )
+ :
+ voidSelect an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event t... Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
+The store must be loaded and the list expanded for this function to work, otherwise use setValue. | ComboBox | | selectByValue( String value , Boolean scrollIntoView )
+ :
+ BooleanSelect an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
+The sto... Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
+The store must be loaded and the list expanded for this function to work, otherwise use setValue. | ComboBox | | selectText( [Number start ], [Number end ] )
+ :
+ voidSelects text in this field Selects text in this field | TextField | | setAutoScroll( Boolean scroll )
+ :
+ Ext.BoxComponentSets the overflow on the content element of the component. Sets the overflow on the content element of the component. | BoxComponent | | setDisabled( Boolean disabled )
+ :
+ Ext.ComponentConvenience function for setting disabled/enabled by boolean. Convenience function for setting disabled/enabled by boolean. | Component | | setEditable( Boolean value )
+ :
+ voidParameters:value : BooleanTrue to allow the user to directly edit the field text
+Allow or prevent the user from directly editing the field text. If false is passed,
+the user will only be able to modify the field using the trigger. Will also add
+a click event to the text field which will call the trigger. This method
+is the runtime equivalent of setting the 'editable' config option at config time. Returns: | TriggerField | | setHeight( Number height )
+ :
Ext.BoxComponentSets the height of the component. This method fires the resize event. Sets the height of the component. This method fires the resize event. Parameters:height : NumberThe new height to set. This may be one of:
- A Number specifying the new height in the Element's Ext.Element.defaultUnits (by default, pixels).
- A String used to set the CSS height style.
- undefined to leave the height unchanged.
- Returns: | BoxComponent | | setPagePosition( Number x , Number y )
- :
- Ext.BoxComponentSets the page XY position of the component. To set the left and top instead, use setPosition.
+ Returns: | BoxComponent | | setPagePosition( Number x , Number y )
+ :
+ Ext.BoxComponentSets the page XY position of the component. To set the left and top instead, use setPosition.
This method fires the ... Sets the page XY position of the component. To set the left and top instead, use setPosition.
-This method fires the move event. Parameters:x : NumberThe new x position y : NumberThe new y position Returns: | BoxComponent | | setPosition( Number left , Number top )
- :
- Ext.BoxComponentSets the left and top of the component. To set the page XY position instead, use setPagePosition.
+This method fires the move event. Parameters:x : NumberThe new x position y : NumberThe new y position Returns: | BoxComponent | | setPosition( Number left , Number top )
+ :
+ Ext.BoxComponentSets the left and top of the component. To set the page XY position instead, use setPagePosition.
This method fires ... Sets the left and top of the component. To set the page XY position instead, use setPagePosition.
-This method fires the move event. Parameters:left : NumberThe new left top : NumberThe new top Returns: | BoxComponent | | setRawValue( Mixed value )
- :
- MixedSets the underlying DOM field's value directly, bypassing validation. To set the value with validation see setValue. Sets the underlying DOM field's value directly, bypassing validation. To set the value with validation see setValue. Parameters:value : MixedThe value to set Returns: | Field | | setSize( Mixed width , Mixed height )
- :
- Ext.BoxComponentSets the width and height of this BoxComponent. This method fires the resize event. This method can accept
+This method fires the move event. Parameters:left : NumberThe new left top : NumberThe new top Returns: | BoxComponent | | setRawValue( Mixed value )
+ :
+ MixedSets the underlying DOM field's value directly, bypassing validation. To set the value with validation see setValue. Sets the underlying DOM field's value directly, bypassing validation. To set the value with validation see setValue. Parameters:value : MixedThe value to set Returns: | Field | | setReadOnly( Boolean value )
+ :
+ void | TriggerField | | setSize( Mixed width , Mixed height )
+ :
+ Ext.BoxComponentSets the width and height of this BoxComponent. This method fires the resize event. This method can accept
either wid... Sets the width and height of this BoxComponent. This method fires the resize event. This method can accept
either width and height as separate arguments, or you can pass a size object like {width:10, height:20} . Parameters:width : MixedThe new width to set. This may be one of:
- A Number specifying the new width in the Element's Ext.Element.defaultUnits (by default, pixels).
@@ -1177,38 +1350,43 @@ This may be one of:
- A Number specifying the new height in the Element's Ext.Element.defaultUnits (by default, pixels).
- A String used to set the CSS height style. Animation may not be used.
undefined to leave the height unchanged.
- Returns:
| BoxComponent | | setValue( String value )
- :
- Ext.form.FieldSets the specified value into the field. If the value finds a match, the corresponding record text
-will be displaye... Sets the specified value into the field. If the value finds a match, the corresponding record text
-will be displayed in the field. If the value does not match the data value of an existing item,
-and the valueNotFoundText config option is defined, it will be displayed as the default field text.
-Otherwise the field will be blank (although the value will still be set). Parameters:value : StringThe value to match Returns: | ComboBox | | setVisible( Boolean visible )
- :
- Ext.ComponentConvenience function to hide or show this component by boolean. Convenience function to hide or show this component by boolean. | Component | | setWidth( Number width )
- :
+Returns: | BoxComponent | | setValue( String value )
+ :
+ Ext.form.FieldSets the specified value into the field. If the value finds a match, the corresponding record text
+will be displayed... Sets the specified value into the field. If the value finds a match, the corresponding record text
+will be displayed in the field. If the value does not match the data value of an existing item,
+and the valueNotFoundText config option is defined, it will be displayed as the default field text.
+Otherwise the field will be blank (although the value will still be set). Parameters:value : StringThe value to match Returns: | ComboBox | | setVisible( Boolean visible )
+ :
+ Ext.ComponentConvenience function to hide or show this component by boolean. Convenience function to hide or show this component by boolean. | Component | | setWidth( Number width )
+ :
Ext.BoxComponentSets the width of the component. This method fires the resize event. Sets the width of the component. This method fires the resize event. Parameters:width : NumberThe new width to setThis may be one of: Returns: | BoxComponent | | show()
- :
- Ext.ComponentShow this component. Listen to the 'beforeshow' event and return
+ Returns: | BoxComponent | | show()
+ :
+ Ext.ComponentShow this component. Listen to the 'beforeshow' event and return
false to cancel showing the component. Fires the '... Show this component. Listen to the ' beforeshow' event and return
false to cancel showing the component. Fires the ' show'
-event after showing the component. | Component | | suspendEvents( Boolean queueSuspended )
- :
+event after showing the component. | Component | | suspendEvents( Boolean queueSuspended )
+ :
voidSuspend the firing of all events. (see resumeEvents) Suspend the firing of all events. (see resumeEvents) Parameters:queueSuspended : BooleanPass as true to queue up suspended events to be fired
-after the resumeEvents call instead of discarding all suspended events; Returns: | Observable | | syncSize()
- :
- Ext.BoxComponentForce the component's size to recalculate based on the underlying element's current height and width. Force the component's size to recalculate based on the underlying element's current height and width. | BoxComponent | | un( String eventName , Function handler , [Object scope ] )
- :
- voidRemoves an event handler (shorthand for removeListener.) | Observable | | updateBox( Object box )
- :
- Ext.BoxComponentSets the current box measurements of the component's underlying element. Sets the current box measurements of the component's underlying element. | BoxComponent | | validate()
- :
- BooleanValidates the field value Validates the field value | Field | | validateValue( Mixed value )
- :
- BooleanValidates a value according to the field's validation rules and marks the field as invalid
+after the resumeEvents call instead of discarding all suspended events; Returns: | Observable | | syncSize()
+ :
+ Ext.BoxComponentForce the component's size to recalculate based on the underlying element's current height and width. Force the component's size to recalculate based on the underlying element's current height and width. | BoxComponent | | un( String eventName , Function handler , [Object scope ] )
+ :
+ voidRemoves an event handler (shorthand for removeListener.) | Observable | | update( Mixed htmlOrData , [Boolean loadScripts ], [Function callback ] )
+ :
+ voidUpdate the content area of a component. Update the content area of a component. Parameters:htmlOrData : MixedIf this component has been configured with a template via the tpl config
+then it will use this argument as data to populate the template.
+If this component was not configured with a template, the components
+content area will be updated via Ext.Element update loadScripts : Boolean(optional) Only legitimate when using the html configuration. Defaults to false callback : Function(optional) Only legitimate when using the html configuration. Callback to execute when scripts have finished loading Returns: | Component | | updateBox( Object box )
+ :
+ Ext.BoxComponentSets the current box measurements of the component's underlying element. Sets the current box measurements of the component's underlying element. | BoxComponent | | validate()
+ :
+ BooleanValidates the field value Validates the field value | Field | | validateValue( Mixed value )
+ :
+ BooleanValidates a value according to the field's validation rules and marks the field as invalid
if the validation fails. V... Validates a value according to the field's validation rules and marks the field as invalid
if the validation fails. Validation rules are processed in the following order:
@@ -1262,99 +1440,103 @@ vtype Mask property.
configured regex test will be processed.
The invalid message for this test is configured with
regexText .
- Parameters:value : MixedThe value to validate Returns: | TextField |
Public Events|
| afterrender :
- ( Ext.Component this )
- Fires after the component rendering is finished.
+ Parameters:value : MixedThe value to validate Returns: | TextField |
Public Events|
| added :
+ ( Ext.Component this , Ext.Container ownerCt , number index )
+ Fires when a component is added to an Ext.Container Fires when a component is added to an Ext.Container Listeners will be called with the following arguments: | Component | | afterrender :
+ ( Ext.Component this )
+ Fires after the component rendering is finished.
The afterrender event is fired after this Component has been rendere... Fires after the component rendering is finished.
The afterrender event is fired after this Component has been rendered, been postprocesed
by any afterRender method defined for the Component, and, if stateful, after state
-has been restored. Listeners will be called with the following arguments: | Component | | autosize :
- ( Ext.form.Field this , Number width )
- Fires when the autoSize function is triggered. The field may or
+has been restored. Listeners will be called with the following arguments: | Component | | autosize :
+ ( Ext.form.Field this , Number width )
+ Fires when the autoSize function is triggered. The field may or
may not have actually changed size according to the d... Fires when the autoSize function is triggered. The field may or
may not have actually changed size according to the default logic, but this event provides
-a hook for the developer to apply additional logic at runtime to resize the field if needed. Listeners will be called with the following arguments:this : Ext.form.FieldThis text field width : NumberThe new field width
| TextField | | beforedestroy :
- ( Ext.Component this )
- Fires before the component is destroyed. Return false from an event handler to stop the destroy. Fires before the component is destroyed. Return false from an event handler to stop the destroy. Listeners will be called with the following arguments: | Component | | beforehide :
- ( Ext.Component this )
- Fires before the component is hidden by calling the hide method.
+a hook for the developer to apply additional logic at runtime to resize the field if needed. Listeners will be called with the following arguments:this : Ext.form.FieldThis text field width : NumberThe new field width
| TextField | | beforedestroy :
+ ( Ext.Component this )
+ Fires before the component is destroyed. Return false from an event handler to stop the destroy. Fires before the component is destroyed. Return false from an event handler to stop the destroy. Listeners will be called with the following arguments: | Component | | beforehide :
+ ( Ext.Component this )
+ Fires before the component is hidden by calling the hide method.
Return false from an event handler to stop the hide. Fires before the component is hidden by calling the hide method.
-Return false from an event handler to stop the hide. Listeners will be called with the following arguments: | Component | | beforequery :
- ( Object queryEvent )
- Fires before all queries are processed. Return false to cancel the query or set the queryEvent's
-cancel property to ... Fires before all queries are processed. Return false to cancel the query or set the queryEvent's
-cancel property to true. Listeners will be called with the following arguments:queryEvent : ObjectAn object that has these properties:
| ComboBox | | beforerender :
- ( Ext.Component this )
- Fires before the component is rendered. Return false from an
+Return false from an event handler to stop the hide. Listeners will be called with the following arguments: | Component | | beforequery :
+ ( Object queryEvent )
+ Fires before all queries are processed. Return false to cancel the query or set the queryEvent's
+cancel property to t... Fires before all queries are processed. Return false to cancel the query or set the queryEvent's
+cancel property to true. Listeners will be called with the following arguments:queryEvent : ObjectAn object that has these properties:
| ComboBox | | beforerender :
+ ( Ext.Component this )
+ Fires before the component is rendered. Return false from an
event handler to stop the render. Fires before the component is rendered. Return false from an
-event handler to stop the render. Listeners will be called with the following arguments: | Component | | beforeselect :
- ( Ext.form.ComboBox combo , Ext.data.Record record , Number index )
- Fires before a list item is selected. Return false to cancel the selection. Fires before a list item is selected. Return false to cancel the selection. Listeners will be called with the following arguments: | ComboBox | | beforeshow :
- ( Ext.Component this )
- Fires before the component is shown by calling the show method.
+event handler to stop the render. Listeners will be called with the following arguments: | Component | | beforeselect :
+ ( Ext.form.ComboBox combo , Ext.data.Record record , Number index )
+ Fires before a list item is selected. Return false to cancel the selection. Fires before a list item is selected. Return false to cancel the selection. Listeners will be called with the following arguments: | ComboBox | | beforeshow :
+ ( Ext.Component this )
+ Fires before the component is shown by calling the show method.
Return false from an event handler to stop the show. Fires before the component is shown by calling the show method.
-Return false from an event handler to stop the show. Listeners will be called with the following arguments: | Component | | beforestaterestore :
- ( Ext.Component this , Object state )
+Return false from an event handler to stop the show.Listeners will be called with the following arguments: | Component | | beforestaterestore :
+ ( Ext.Component this , Object state )
Fires before the state of the component is restored. Return false from an event handler to stop the restore. Fires before the state of the component is restored. Return false from an event handler to stop the restore. Listeners will be called with the following arguments:this : Ext.Componentstate : ObjectThe hash of state values returned from the StateProvider. If this
event is not vetoed, then the state object is passed to applyState. By default,
that simply copies property values into this Component. The method maybe overriden to
-provide custom state restoration.
| Component | | beforestatesave :
- ( Ext.Component this , Object state )
+provide custom state restoration. | Component | | beforestatesave :
+ ( Ext.Component this , Object state )
Fires before the state of the component is saved to the configured state provider. Return false to stop the save. Fires before the state of the component is saved to the configured state provider. Return false to stop the save. Listeners will be called with the following arguments:this : Ext.Componentstate : ObjectThe hash of state values. This is determined by calling
getState() on the Component. This method must be provided by the
developer to return whetever representation of state is required, by default, Ext.Component
-has a null implementation.
| Component | | blur :
- ( Ext.form.Field this )
- Fires when this field loses input focus. Fires when this field loses input focus. Listeners will be called with the following arguments: | Field | | change :
- ( Ext.form.Field this , Mixed newValue , Mixed oldValue )
- Fires just before the field blurs if the field value has changed. Fires just before the field blurs if the field value has changed. Listeners will be called with the following arguments:this : Ext.form.FieldnewValue : MixedThe new value oldValue : MixedThe original value
| Field | | collapse :
- ( Ext.form.ComboBox combo )
- Fires when the dropdown list is collapsed Fires when the dropdown list is collapsed Listeners will be called with the following arguments:combo : Ext.form.ComboBoxThis combo box
| ComboBox | | destroy :
- ( Ext.Component this )
- Fires after the component is destroyed. Fires after the component is destroyed. Listeners will be called with the following arguments: | Component | | disable :
- ( Ext.Component this )
- Fires after the component is disabled. Fires after the component is disabled. Listeners will be called with the following arguments: | Component | | enable :
- ( Ext.Component this )
- Fires after the component is enabled. Fires after the component is enabled. Listeners will be called with the following arguments: | Component | | expand :
- ( Ext.form.ComboBox combo )
- Fires when the dropdown list is expanded Fires when the dropdown list is expanded Listeners will be called with the following arguments:combo : Ext.form.ComboBoxThis combo box
| ComboBox | | focus :
- ( Ext.form.Field this )
- Fires when this field receives input focus. Fires when this field receives input focus. Listeners will be called with the following arguments: | Field | | hide :
- ( Ext.Component this )
- Fires after the component is hidden.
+has a null implementation. | Component | | blur :
+ ( Ext.form.Field this )
+ Fires when this field loses input focus. Fires when this field loses input focus. Listeners will be called with the following arguments: | Field | | change :
+ ( Ext.form.Field this , Mixed newValue , Mixed oldValue )
+ Fires just before the field blurs if the field value has changed. Fires just before the field blurs if the field value has changed. Listeners will be called with the following arguments:this : Ext.form.FieldnewValue : MixedThe new value oldValue : MixedThe original value
| Field | | collapse :
+ ( Ext.form.ComboBox combo )
+ Fires when the dropdown list is collapsed Fires when the dropdown list is collapsed Listeners will be called with the following arguments:combo : Ext.form.ComboBoxThis combo box
| ComboBox | | destroy :
+ ( Ext.Component this )
+ Fires after the component is destroyed. Fires after the component is destroyed. Listeners will be called with the following arguments: | Component | | disable :
+ ( Ext.Component this )
+ Fires after the component is disabled. Fires after the component is disabled. Listeners will be called with the following arguments: | Component | | enable :
+ ( Ext.Component this )
+ Fires after the component is enabled. Fires after the component is enabled. Listeners will be called with the following arguments: | Component | | expand :
+ ( Ext.form.ComboBox combo )
+ Fires when the dropdown list is expanded Fires when the dropdown list is expanded Listeners will be called with the following arguments:combo : Ext.form.ComboBoxThis combo box
| ComboBox | | focus :
+ ( Ext.form.Field this )
+ Fires when this field receives input focus. Fires when this field receives input focus. Listeners will be called with the following arguments: | Field | | hide :
+ ( Ext.Component this )
+ Fires after the component is hidden.
Fires after the component is hidden when calling the hide method. Fires after the component is hidden.
-Fires after the component is hidden when calling the hide method. Listeners will be called with the following arguments: | Component | | invalid :
- ( Ext.form.Field this , String msg )
- Fires after the field has been marked as invalid. Fires after the field has been marked as invalid. Listeners will be called with the following arguments:this : Ext.form.Fieldmsg : StringThe validation message
| Field | | keydown :
- ( Ext.form.TextField this , Ext.EventObject e )
- Keydown input field event. This event only fires if enableKeyEvents
+Fires after the component is hidden when calling the hide method. Listeners will be called with the following arguments: | Component | | invalid :
+ ( Ext.form.Field this , String msg )
+ Fires after the field has been marked as invalid. Fires after the field has been marked as invalid. Listeners will be called with the following arguments:this : Ext.form.Fieldmsg : StringThe validation message
| Field | | keydown :
+ ( Ext.form.TextField this , Ext.EventObject e )
+ Keydown input field event. This event only fires if enableKeyEvents
is set to true. Keydown input field event. This event only fires if enableKeyEvents
-is set to true. Listeners will be called with the following arguments:this : Ext.form.TextFieldThis text field e : Ext.EventObject
| TextField | | keypress :
- ( Ext.form.TextField this , Ext.EventObject e )
- Keypress input field event. This event only fires if enableKeyEvents
+is set to true. Listeners will be called with the following arguments:this : Ext.form.TextFieldThis text field e : Ext.EventObject
| TextField | | keypress :
+ ( Ext.form.TextField this , Ext.EventObject e )
+ Keypress input field event. This event only fires if enableKeyEvents
is set to true. Keypress input field event. This event only fires if enableKeyEvents
-is set to true. Listeners will be called with the following arguments:this : Ext.form.TextFieldThis text field e : Ext.EventObject
| TextField | | keyup :
- ( Ext.form.TextField this , Ext.EventObject e )
- Keyup input field event. This event only fires if enableKeyEvents
+is set to true. Listeners will be called with the following arguments:this : Ext.form.TextFieldThis text field e : Ext.EventObject
| TextField | | keyup :
+ ( Ext.form.TextField this , Ext.EventObject e )
+ Keyup input field event. This event only fires if enableKeyEvents
is set to true. Keyup input field event. This event only fires if enableKeyEvents
-is set to true. Listeners will be called with the following arguments:this : Ext.form.TextFieldThis text field e : Ext.EventObject
| TextField | | move :
- ( Ext.Component this , Number x , Number y )
- Fires after the component is moved. Fires after the component is moved. Listeners will be called with the following arguments:this : Ext.Componentx : NumberThe new x position y : NumberThe new y position
| BoxComponent | | render :
- ( Ext.Component this )
- Fires after the component markup is rendered. Fires after the component markup is rendered. Listeners will be called with the following arguments: | Component | | resize :
- ( Ext.Component this , Number adjWidth , Number adjHeight , Number rawWidth , Number rawHeight )
- Fires after the component is resized. Fires after the component is resized. Listeners will be called with the following arguments:this : Ext.ComponentadjWidth : NumberThe box-adjusted width that was set adjHeight : NumberThe box-adjusted height that was set rawWidth : NumberThe width that was originally specified rawHeight : NumberThe height that was originally specified
| BoxComponent | | select :
- ( Ext.form.ComboBox combo , Ext.data.Record record , Number index )
- Fires when a list item is selected Fires when a list item is selected Listeners will be called with the following arguments: | ComboBox | | show :
- ( Ext.Component this )
- Fires after the component is shown when calling the show method. Fires after the component is shown when calling the show method. Listeners will be called with the following arguments: | Component | | specialkey :
- ( Ext.form.Field this , Ext.EventObject e )
- Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.
+is set to true. Listeners will be called with the following arguments:this : Ext.form.TextFieldThis text field e : Ext.EventObject
| TextField | | move :
+ ( Ext.Component this , Number x , Number y )
+ Fires after the component is moved. Fires after the component is moved. Listeners will be called with the following arguments:this : Ext.Componentx : NumberThe new x position y : NumberThe new y position
| BoxComponent | | removed :
+ ( Ext.Component this , Ext.Container ownerCt )
+ Fires when a component is removed from an Ext.Container Fires when a component is removed from an Ext.Container Listeners will be called with the following arguments: | Component | | render :
+ ( Ext.Component this )
+ Fires after the component markup is rendered. Fires after the component markup is rendered. Listeners will be called with the following arguments: | Component | | resize :
+ ( Ext.Component this , Number adjWidth , Number adjHeight , Number rawWidth , Number rawHeight )
+ Fires after the component is resized. Fires after the component is resized. Listeners will be called with the following arguments:this : Ext.ComponentadjWidth : NumberThe box-adjusted width that was set adjHeight : NumberThe box-adjusted height that was set rawWidth : NumberThe width that was originally specified rawHeight : NumberThe height that was originally specified
| BoxComponent | | select :
+ ( Ext.form.ComboBox combo , Ext.data.Record record , Number index )
+ Fires when a list item is selected Fires when a list item is selected Listeners will be called with the following arguments: | ComboBox | | show :
+ ( Ext.Component this )
+ Fires after the component is shown when calling the show method. Fires after the component is shown when calling the show method. Listeners will be called with the following arguments: | Component | | specialkey :
+ ( Ext.form.Field this , Ext.EventObject e )
+ Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.
To handle other keys see Ext.Pan... Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.
To handle other keys see Ext.Panel.keys or Ext.KeyMap.
You can check Ext.EventObject.getKey to determine which key was pressed.
@@ -1380,15 +1562,15 @@ For example: var form = new Ext.form.FormPanel({
}
],
...
-});
Listeners will be called with the following arguments:this : Ext.form.Fielde : Ext.EventObjectThe event object
| Field | | staterestore :
- ( Ext.Component this , Object state )
+});Listeners will be called with the following arguments:this : Ext.form.Fielde : Ext.EventObjectThe event object
| Field | | staterestore :
+ ( Ext.Component this , Object state )
Fires after the state of the component is restored. Fires after the state of the component is restored. Listeners will be called with the following arguments: | Component | | statesave :
- ( Ext.Component this , Object state )
+Component. The method maybe overriden to provide custom state restoration. | Component | | statesave :
+ ( Ext.Component this , Object state )
Fires after the state of the component is saved to the configured state provider. Fires after the state of the component is saved to the configured state provider. Listeners will be called with the following arguments:this : Ext.Componentstate : ObjectThe hash of state values. This is determined by calling
getState() on the Component. This method must be provided by the
developer to return whetever representation of state is required, by default, Ext.Component
-has a null implementation.
| Component | | valid :
- ( Ext.form.Field this )
+has a null implementation. | Component | | valid :
+ ( Ext.form.Field this )
Fires after the field has been validated with no errors. Fires after the field has been validated with no errors. Listeners will be called with the following arguments: | Field |
\ No newline at end of file
|