ExtReact Docs Help

Introduction

The documentation for the ExtReact product diverges somewhat from the documentation of other Sencha products. The sections below describe documentation for all products except where indicated as unique to ExtReact.

Terms, Icons, and Labels

Many classes have shortcut names used when creating (instantiating) a class with a configuration object. The shortcut name is referred to as an alias (or xtype if the class extends Ext.Component). The alias/xtype is listed next to the class name of applicable classes for quick reference.

ExtReact component classes list the configurable name prominently at the top of the API class doc followed by the fully-qualified class name.

Access Levels

Framework classes or their members may be specified as private or protected. Else, the class / member is public. Public, protected, and private are access descriptors used to convey how and when the class or class member should be used.

Member Types

Member Syntax

Below is an example class member that we can disect to show the syntax of a class member (the lookupComponent method as viewed from the Ext.button.Button class in this case).

lookupComponent ( item ) : Ext.Component
protected

Called when a raw config object is added to this container either during initialization of the items config, or when new items are added), or {@link #insert inserted.

This method converts the passed object into an instanced child component.

This may be overridden in subclasses when special processing needs to be applied to child creation.

Parameters

item :  Object

The config object being added.

Returns
Ext.Component

The component to be added.

Let's look at each part of the member row:

Member Flags

The API documentation uses a number of flags to further commnicate the class member's function and intent. The label may be represented by a text label, an abbreviation, or an icon.

Class Icons

- Indicates a framework class

- A singleton framework class. *See the singleton flag for more information

- A component-type framework class (any class within the Ext JS framework that extends Ext.Component)

- Indicates that the class, member, or guide is new in the currently viewed version

Member Icons

- Indicates a class member of type config

Or in the case of an ExtReact component class this indicates a member of type prop

- Indicates a class member of type property

- Indicates a class member of type method

- Indicates a class member of type event

- Indicates a class member of type theme variable

- Indicates a class member of type theme mixin

- Indicates that the class, member, or guide is new in the currently viewed version

Class Member Quick-Nav Menu

Just below the class name on an API doc page is a row of buttons corresponding to the types of members owned by the current class. Each button shows a count of members by type (this count is updated as filters are applied). Clicking the button will navigate you to that member section. Hovering over the member-type button will reveal a popup menu of all members of that type for quick navigation.

Getter and Setter Methods

Getting and setter methods that correlate to a class config option will show up in the methods section as well as in the configs section of both the API doc and the member-type menus just beneath the config they work with. The getter and setter method documentation will be found in the config row for easy reference.

ExtReact component classes do not hoist the getter / setter methods into the prop. All methods will be described in the Methods section

History Bar

Your page history is kept in localstorage and displayed (using the available real estate) just below the top title bar. By default, the only search results shown are the pages matching the product / version you're currently viewing. You can expand what is displayed by clicking on the button on the right-hand side of the history bar and choosing the "All" radio option. This will show all recent pages in the history bar for all products / versions.

Within the history config menu you will also see a listing of your recent page visits. The results are filtered by the "Current Product / Version" and "All" radio options. Clicking on the button will clear the history bar as well as the history kept in local storage.

If "All" is selected in the history config menu the checkbox option for "Show product details in the history bar" will be enabled. When checked, the product/version for each historic page will show alongside the page name in the history bar. Hovering the cursor over the page names in the history bar will also show the product/version as a tooltip.

Search and Filters

Both API docs and guides can be searched for using the search field at the top of the page.

On API doc pages there is also a filter input field that filters the member rows using the filter string. In addition to filtering by string you can filter the class members by access level, inheritance, and read only. This is done using the checkboxes at the top of the page.

The checkbox at the bottom of the API class navigation tree filters the class list to include or exclude private classes.

Clicking on an empty search field will show your last 10 searches for quick navigation.

API Doc Class Metadata

Each API doc page (with the exception of Javascript primitives pages) has a menu view of metadata relating to that class. This metadata view will have one or more of the following:

Expanding and Collapsing Examples and Class Members

Runnable examples (Fiddles) are expanded on a page by default. You can collapse and expand example code blocks individually using the arrow on the top-left of the code block. You can also toggle the collapse state of all examples using the toggle button on the top-right of the page. The toggle-all state will be remembered between page loads.

Class members are collapsed on a page by default. You can expand and collapse members using the arrow icon on the left of the member row or globally using the expand / collapse all toggle button top-right.

Desktop -vs- Mobile View

Viewing the docs on narrower screens or browsers will result in a view optimized for a smaller form factor. The primary differences between the desktop and "mobile" view are:

Viewing the Class Source

The class source can be viewed by clicking on the class name at the top of an API doc page. The source for class members can be viewed by clicking on the "view source" link on the right-hand side of the member row.

ExtReact 6.5.0


top

Ext.field.DatePicker xtype: datepickerfield

Summary

This is a specialized field which shows a Ext.picker.Date when tapped. If it has a predefined value, or a value is selected in the Ext.picker.Date, it will be displayed like a normal TextField (but not selectable/changeable).

Ext.field.DatePicker fields are very simple to implement, and have no required configurations.

Examples

It can be very useful to set a default value configuration on Ext.field.DatePicker fields. In this example, we set the value to be the current date. You can also use the setValue method to update the value at any time.

No members found using the current filters

configs

Optional Configs

activeErrorsTpl : String / String[] / Ext.XTemplate

The template used to format the Array of error messages passed to setActiveErrors into a single HTML string. if the msgTarget is title, it defaults to a list separated by new lines. Otherwise, it renders each message as an item in an unordered list.

Defaults to:

undefined

allowBlank : Boolean
bindable bind

Specify false to not accept blank values

Defaults to:

null

getAllowBlank : Boolean

Returns the value of allowBlank

Returns

Boolean

setAllowBlank (allowBlank)

Sets the value of allowBlank

Parameters

allowBlank :  Boolean

ariaAttributes : Object
bindable bind

An object containing ARIA attributes to be set on this Component's ARIA element. Use this to set the attributes that cannot be determined by the Component's state, such as aria-live, aria-flowto, etc.

Note that this config is only meaningful at the Component rendering time, and setting it after that will do nothing.

getAriaAttributes : Object

Returns the value of ariaAttributes

Returns

Object

setAriaAttributes (ariaAttributes)

Sets the value of ariaAttributes

Parameters

ariaAttributes :  Object

ariaDescribedBy : String

DOM selector for a child element that is to be used as description for this Component, set in aria-describedby attribute. The selector works the same way as ariaLabelledBy.

ariaLabel : String

ARIA label for this Component. It is best to use ariaLabelledBy option instead, because screen readers prefer aria-labelledby attribute to aria-label. ariaLabel and ariaLabelledBy config options are mutually exclusive.

ariaLabelledBy : String

DOM selector for a child element that is to be used as label for this Component, set in aria-labelledby attribute. If the selector is by #id, the label element can be any existing element, not necessarily a child of the main Component element.

ariaLabelledBy and ariaLabel config options are mutually exclusive, and ariaLabelledBy has the higher precedence.

autoCapitalize : Boolean
bindable bind

True to set the field's DOM element auto=capitalize attribute to "on", false to set to "off".

Defaults to:

null

getAutoCapitalize : Boolean

Returns the value of autoCapitalize

Returns

Boolean

setAutoCapitalize (autoCapitalize)

Sets the value of autoCapitalize

Parameters

autoCapitalize :  Boolean

autoComplete : Boolean
bindable bind

Autocomplete is disabled on Picker fields by default.

Defaults to:

false

getAutoComplete : Boolean

Returns the value of autoComplete

Returns

Boolean

setAutoComplete (autoComplete)

Sets the value of autoComplete

Parameters

autoComplete :  Boolean

autoCorrect : Boolean
bindable bind

True to set the field DOM element auto-correct attribute to "on", false to set to "off".

Defaults to:

null

getAutoCorrect : Boolean

Returns the value of autoCorrect

Returns

Boolean

setAutoCorrect (autoCorrect)

Sets the value of autoCorrect

Parameters

autoCorrect :  Boolean

autoFitErrors : Boolean

Whether to adjust the component's body width to make room for error messages.

Defaults to:

null

axisLock : Boolean

If true, then, when showBy or alignTo fallback on constraint violation only takes place along the major align axis.

That is, if alignment "l-r" is being used, and axisLock: true is used, then if constraints fail, only fallback to "r-l" is considered.

Defaults to:

null

blankText : String

The error text to display if the allowBlank validation fails.

Defaults to:

'This field is required'

bodyAlign : 'start' / 'center' / 'end' / 'stretch'
bindable bind

The horizontal alignment of this field's component within the body of the field

Defaults to:

'start'

getBodyAlign : 'start' / 'center' / 'end' / 'stretch'

Returns the value of bodyAlign

Returns

'start' / 'center' / 'end' / 'stretch'

setBodyAlign (bodyAlign)

Sets the value of bodyAlign

Parameters

bodyAlign :  'start' / 'center' / 'end' / 'stretch'

border : Boolean
bindable bind

Enables or disables bordering on this component. The following values are accepted:

  • null or `true (default): Do nothing and allow the border to be specified by the theme.
  • false: suppress the default border provided by the theme.

Please note that enabling bordering via this config will not add a border-color or border-style CSS property to the component; you provide the border-color and border-style via CSS rule or style configuration (if not already provide by the theme).

Defaults to:

null

getBorder : Boolean

Returns the value of border

Returns

Boolean

setBorder (border)

Sets the value of border

Parameters

border :  Boolean

bottom : Number / String
bindable bind

The absolute bottom position of this Component; must be a valid CSS length value, e.g: 300, 100px, 30%, etc. Explicitly setting this value will make this Component become 'positioned', which means it will no longer participate in the layout of the Container that it resides in.

Defaults to:

null

getBottom : Number / String

Returns the value of bottom

Returns

Number / String

setBottom (bottom)

Sets the value of bottom

Parameters

bottom :  Number / String

centered : Boolean
bindable bind

Configure this as true to have this Component centered within its Container. Setting this value to true will make this Component become 'positioned', which means it will no longer participate in the layout of the Container that it resides in.

Defaults to:

null

getCentered : Boolean

Returns the value of centered

Returns

Boolean

setCentered (centered)

Sets the value of centered

Parameters

centered :  Boolean

clearIcon : Boolean
bindable bind

Defaults to:

false

getClearIcon : Boolean

Returns the value of clearIcon

Returns

Boolean

setClearIcon (clearIcon)

Sets the value of clearIcon

Parameters

clearIcon :  Boolean

cls : String / String[]
bindable bind

The CSS class to add to this widget's element, in addition to the baseCls. In many cases, this property will be specified by the derived widget class. See userCls for adding additional CSS classes to widget instances (such as items in a Container).

Defaults to:

null

getCls : String / String[]

Returns the value of cls

Returns

String / String[]

setCls (cls)

Sets the value of cls

Parameters

cls :  String / String[]

component : Object
bindable bind

The config object to factory the Component that this Decorator wraps around.

getComponent : Object

Returns the value of component

Returns

Object

setComponent (component)

Sets the value of component

Parameters

component :  Object

contentEl : Ext.dom.Element / HTMLElement / String
bindable bind

The configured element will automatically be added as the content of this component. When you pass a string, we expect it to be an element id. If the content element is hidden, we will automatically show it.

Defaults to:

null

getContentEl : Ext.dom.Element / HTMLElement / String

Returns the value of contentEl

Returns

Ext.dom.Element / HTMLElement / String

setContentEl (contentEl)

Sets the value of contentEl

Parameters

contentEl :  Ext.dom.Element / HTMLElement / String

data : Object
bindable bind

The initial set of data to apply to the tpl to update the content area of the Component.

Defaults to:

null

getData : Object

Returns the value of data

Returns

Object

setData (data)

Sets the value of data

Parameters

data :  Object

dateFormat : String
bindable bind

The format to be used when displaying the date in this field. Accepts any valid date format. You can view formats over in the Ext.Date documentation.

Defaults to:

Ext.util.Format.defaultDateFormat

getDateFormat : String

Returns the value of dateFormat

Returns

String

setDateFormat (dateFormat)

Sets the value of dateFormat

Parameters

dateFormat :  String

destroyPickerOnHide : Boolean
bindable bind

Whether or not to destroy the picker widget on hide. This save memory if it's not used frequently, but increase delay time on the next show due to re-instantiation.

Defaults to:

false

getDestroyPickerOnHide : Boolean

Returns the value of destroyPickerOnHide

Returns

Boolean

setDestroyPickerOnHide (destroyPickerOnHide)

Sets the value of destroyPickerOnHide

Parameters

destroyPickerOnHide :  Boolean

disabled : Boolean
bindable bind

true to disable the field.

Be aware that conformant with the HTML specification, disabled Fields will not be submitted.

Defaults to:

false

getDisabled : Boolean

Returns the value of disabled

Returns

Boolean

setDisabled (disabled)

Sets the value of disabled

Parameters

disabled :  Boolean

docked : String
bindable bind

The dock position of this component in its container. Can be left, top, right or bottom.

Notes

You must use a HTML5 doctype for docked bottom to work. To do this, simply add the following code to the HTML file:

<!doctype html>

So your index.html file should look a little like this:

<!doctype html>
<html>
    <head>
        <title>MY application title</title>
        ...

Defaults to:

null

getDocked : String

Returns the value of docked

Returns

String

setDocked (docked)

Sets the value of docked

Parameters

docked :  String

draggable : Object
bindable bind

Configuration options to make this Component draggable

Defaults to:

null

getDraggable : Object

Returns the value of draggable

Returns

Object

setDraggable (draggable)

Sets the value of draggable

Parameters

draggable :  Object

edgePicker : String / Object
bindable bind

A configuration object, containing an cfg#xtype property which specifies the widget to create if picker: 'edge' (or if it's 'auto' and the app is on a phone)

Defaults to:

null

Available since: 6.5.0

getEdgePicker : String / Object

Returns the value of edgePicker

Returns

String / Object

setEdgePicker (edgePicker)

Sets the value of edgePicker

Parameters

edgePicker :  String / Object

editable : Boolean
bindable bind

Configure as false to prevent the user from typing text directly into the field; the field can only have its value set programmatically or via an action invoked by a trigger.

Contrast with readOnly which disables all mutation via the UI.

Defaults to:

true

getEditable : Boolean

Returns the value of editable

Returns

Boolean

setEditable (editable)

Sets the value of editable

Parameters

editable :  Boolean

floatedPicker : String / Object
bindable bind

A configuration object, containing an cfg#xtype property which specifies the widget to create if picker: 'floated' (or if it's 'auto' and the app is not on a phone)

Defaults to:

null

Available since: 6.5.0

getFloatedPicker : String / Object

Returns the value of floatedPicker

Returns

String / Object

setFloatedPicker (floatedPicker)

Sets the value of floatedPicker

Parameters

floatedPicker :  String / Object

floatedPickerAlign : String
bindable bind

*Only valud when the floatedPicker is used. The showBy alignment string to use when showing the floated picker by the input field.

Defaults to:

tl-bl?

getFloatedPickerAlign : String

Returns the value of floatedPickerAlign

Returns

String

setFloatedPickerAlign (floatedPickerAlign)

Sets the value of floatedPickerAlign

Parameters

floatedPickerAlign :  String

focusCls : String

CSS class that will be added to focused component's focusClsEl, and removed when component blurs.

Defaults to:

'x-focused'

height : Number / String
bindable bind

The height of this Component; must be a valid CSS length value, e.g: 300, 100px, 30%, etc. By default, if this is not explicitly set, this Component's element will simply have its own natural size. If set to auto, it will set the width to null meaning it will have its own natural size.

Defaults to:

null

getHeight : Number / String

Returns the value of height

Returns

Number / String

setHeight (height)

Sets the value of height

Parameters

height :  Number / String

hidden : Boolean
bindable bind

Whether or not this Component is hidden (its CSS display property is set to none).

Defaults to true for floated Components.

Defaults to:

null

getHidden : Boolean

Returns the value of hidden

Returns

Boolean

setHidden (hidden)

Sets the value of hidden

Parameters

hidden :  Boolean

hideAnimation : String / Mixed
bindable bind

Animation effect to apply when the Component is being hidden. Typically you want to use an outbound animation type such as 'fadeOut' or 'slideOut'. For more animations, check the Ext.fx.Animation#type config.

Defaults to:

null

getHideAnimation : String / Mixed

Returns the value of hideAnimation

Returns

String / Mixed

setHideAnimation (hideAnimation)

Sets the value of hideAnimation

Parameters

hideAnimation :  String / Mixed

hideOnMaskTap : Boolean
bindable bind

When using a modal Component, setting this to true will hide the modal mask and the Container when the mask is tapped on.

Defaults to:

null

getHideOnMaskTap : Boolean

Returns the value of hideOnMaskTap

Returns

Boolean

setHideOnMaskTap (hideOnMaskTap)

Sets the value of hideOnMaskTap

Parameters

hideOnMaskTap :  Boolean

html : String / Ext.dom.Element / HTMLElement
bindable bind

Optional HTML content to render inside this Component, or a reference to an existing element on the page.

Defaults to:

null

getHtml : String / Ext.dom.Element / HTMLElement

Returns the value of html

Returns

String / Ext.dom.Element / HTMLElement

setHtml (html)

Sets the value of html

Parameters

html :  String / Ext.dom.Element / HTMLElement

inputCls : String

CSS class to add to the input element of this field

Defaults to:

null

inputType : String
bindable bind

The type attribute for input fields -- e.g. text, password, date, url, email, etc.

Defaults to:

null

getInputType : String

Returns the value of inputType

Returns

String

setInputType (inputType)

Sets the value of inputType

Parameters

inputType :  String

keyMap : Object
bindable bind

An object containing handlers for keyboard events. The property names of this object are the key name and any modifiers. The values of the properties are the descriptors of how to handle each event.

The handler descriptor can be simply the handler function (either the literal function or the method name), or it can be an object with these properties:

  • handler: The function or its name to call to handle the event.
  • scope: The this pointer context (can be "this" or "controller").
  • event: An optional override of the key event to which to listen.

Important: Calls to setKeyMap do not replace the entire keyMap but instead update the provided mappings. That is, unless null is passed as the value of the keyMap which will clear the keyMap of all entries.

Properties

scope : String

The default scope to apply to key handlers which do not specify a scope. This is processed the same way as the scope of cfg-listeners. It defaults to the "controller", but using 'this' means that an instance method will be used.

getKeyMap : Object

Returns the value of keyMap

Returns

Object

setKeyMap (keyMap)

Sets the value of keyMap

Parameters

keyMap :  Object

keyMapEnabled : Boolean
bindable bind

Enables or disables processing keys in the keyMap. This value starts as null and if it is null when initKeyMap is called, it will automatically be set to true. Since initKeyMap is called by Ext.Component at the proper time, this is not something application code normally handles.

Defaults to:

null

getKeyMapEnabled : Boolean

Returns the value of keyMapEnabled

Returns

Boolean

setKeyMapEnabled (keyMapEnabled)

Sets the value of keyMapEnabled

Parameters

keyMapEnabled :  Boolean

keyMapTarget : String
protected pro

The name of the member that should be used to listen for keydown/keypress events. This is intended to be controlled at the class level not per instance.

Defaults to:

'el'

label : String
bindable bind

The label of this field

Defaults to:

null

getLabel : String

Returns the value of label

Returns

String

setLabel (label)

Sets the value of label

Parameters

label :  String

labelAlign : 'top' / 'left' / 'bottom' / 'right' / 'placeholder'
bindable bind

When value is 'placeholder', the label text will be rendered as placeholder text inside the empty input and will animated to "top" alignment when the input is focused or contains text.

The position to render the label relative to the field input.

Defaults to:

'left'

getLabelAlign : 'top' / 'left' / 'bottom' / 'right' / 'placeholder'

Returns the value of labelAlign

Returns

'top' / 'left' / 'bottom' / 'right' / 'placeholder'

setLabelAlign (labelAlign)

Sets the value of labelAlign

Parameters

labelAlign :  'top' / 'left' / 'bottom' / 'right' / 'placeholder'

labelCls : String
bindable bind

Optional CSS class to add to the Label element.

Defaults to:

null

getLabelCls : String

Returns the value of labelCls

Returns

String

setLabelCls (labelCls)

Sets the value of labelCls

Parameters

labelCls :  String

labelTextAlign : 'top' / 'right' / 'bottom' / 'left'
bindable bind

Text alignment of this field's label

Defaults to:

'left'

getLabelTextAlign : 'top' / 'right' / 'bottom' / 'left'

Returns the value of labelTextAlign

Returns

'top' / 'right' / 'bottom' / 'left'

setLabelTextAlign (labelTextAlign)

Sets the value of labelTextAlign

Parameters

labelTextAlign :  'top' / 'right' / 'bottom' / 'left'

labelWidth : Number / String
bindable bind

The width to make this field's label.

Defaults to:

'30%'

getLabelWidth : Number / String

Returns the value of labelWidth

Returns

Number / String

setLabelWidth (labelWidth)

Sets the value of labelWidth

Parameters

labelWidth :  Number / String

labelWrap : Boolean
bindable bind

true to allow the label to wrap. If set to false, the label will be truncated with an ellipsis.

Defaults to:

false

getLabelWrap : Boolean

Returns the value of labelWrap

Returns

Boolean

setLabelWrap (labelWrap)

Sets the value of labelWrap

Parameters

labelWrap :  Boolean

left : Number / String
bindable bind

The absolute left position of this Component; must be a valid CSS length value, e.g: 300, 100px, 30%, etc. Explicitly setting this value will make this Component become 'positioned', which means it will no longer participate in the layout of the Container that it resides in.

Defaults to:

null

getLeft : Number / String

Returns the value of left

Returns

Number / String

setLeft (left)

Sets the value of left

Parameters

left :  Number / String

listeners : Object
bindable bind

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.

DOM events from Ext JS Ext.Component

While some Ext JS Component classes export selected DOM events (e.g. "click", "mouseover" etc), this is usually only done when extra value can be added. For example the DataView's itemclick event passing the node clicked on. To access DOM events directly from a child element of a Component, we need to specify the element option to identify the Component property to add a DOM listener to:

new Ext.panel.Panel({
    width: 400,
    height: 200,
    dockedItems: [{
        xtype: 'toolbar'
    }],
    listeners: {
        click: {
            element: 'el', //bind to the underlying el property on the panel
            fn: function(){ console.log('click el'); }
        },
        dblclick: {
            element: 'body', //bind to the underlying body property on the panel
            fn: function(){ console.log('dblclick body'); }
        }
    }
});

setListeners ( listeners )

An alias for addListener. In versions prior to 5.1, listeners had a generated setter which could be called to add listeners. In 5.1 the listeners config is not processed using the config system and has no generated setter, so this method is provided for backward compatibility. The preferred way of adding listeners is to use the on method.

Parameters

listeners :  Object

The listeners

margin : Number / String
bindable bind

The margin to use on this Component. Can be specified as a number (in which case all edges get the same margin) or a CSS string like '5 10 10 10'

Defaults to:

null

getMargin : Number / String

Returns the value of margin

Returns

Number / String

setMargin (margin)

Sets the value of margin

Parameters

margin :  Number / String

matchFieldWidth : Boolean
bindable bind

*Only valid when the picker: 'floated' is used. Whether the floatedPicker's width should be explicitly set to match the width of the input element.

Defaults to:

true

getMatchFieldWidth : Boolean

Returns the value of matchFieldWidth

Returns

Boolean

setMatchFieldWidth (matchFieldWidth)

Sets the value of matchFieldWidth

Parameters

matchFieldWidth :  Boolean

maxHeight : Number / String
bindable bind

The maximum height of this Component; must be a valid CSS length value, e.g: 300, 100px, 30%, etc. If set to auto, it will set the width to null meaning it will have its own natural size. Note that this config will not apply if the Component is 'positioned' (absolutely positioned or centered)

Defaults to:

null

getMaxHeight : Number / String

Returns the value of maxHeight

Returns

Number / String

setMaxHeight (maxHeight)

Sets the value of maxHeight

Parameters

maxHeight :  Number / String

maxLength : Number
bindable bind

The maximum number of permitted input characters.

Defaults to:

null

getMaxLength : Number

Returns the value of maxLength

Returns

Number

setMaxLength (maxLength)

Sets the value of maxLength

Parameters

maxLength :  Number

maxWidth : Number / String
bindable bind

The maximum width of this Component; must be a valid CSS length value, e.g: 300, 100px, 30%, etc. If set to auto, it will set the width to null meaning it will have its own natural size. Note that this config will not apply if the Component is 'positioned' (absolutely positioned or centered)

Defaults to:

null

getMaxWidth : Number / String

Returns the value of maxWidth

Returns

Number / String

setMaxWidth (maxWidth)

Sets the value of maxWidth

Parameters

maxWidth :  Number / String

minHeight : Number / String
bindable bind

The minimum height of this Component; must be a valid CSS length value, e.g: 300, 100px, 30%, etc. If set to auto, it will set the width to null meaning it will have its own natural size.

Defaults to:

null

getMinHeight : Number / String

Returns the value of minHeight

Returns

Number / String

setMinHeight (minHeight)

Sets the value of minHeight

Parameters

minHeight :  Number / String

minWidth : Number / String
bindable bind

The minimum width of this Component; must be a valid CSS length value, e.g: 300, 100px, 30%, etc. If set to auto, it will set the width to null meaning it will have its own natural size.

Defaults to:

null

getMinWidth : Number / String

Returns the value of minWidth

Returns

Number / String

setMinWidth (minWidth)

Sets the value of minWidth

Parameters

minWidth :  Number / String

modal : Boolean
bindable bind

true to make this Component modal. This will create a mask underneath the Component that covers its parent and does not allow the user to interact with any other Components until this Component is dismissed.

Defaults to:

null

getModal : Boolean

Returns the value of modal

Returns

Boolean

setModal (modal)

Sets the value of modal

Parameters

modal :  Boolean

msgTarget : String

[msgTarget="qtip"]

The location where the error message text should display. Must be one of the following values:

  • qtip Display a quick tip containing the message when the user hovers (or taps) the field. This is the default. Ext.tip.Manager#init must have been called for this setting to work.
  • 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 or tap
  • none Don't display any error message. This might be useful if you are implementing custom error display. [element id] Add the error message to the innerHTML of the specified element

name : String
bindable bind

The field's HTML name attribute.

Note: this property must be set if this field is to be automatically included with. form submit().

Defaults to:

null

getName : String

Returns the value of name

Returns

String

setName (name)

Sets the value of name

Parameters

name :  String

padding : Number / String
bindable bind

The padding to use on this Component. Can be specified as a number (in which case all edges get the same padding) or a CSS string like '5 10 10 10'

Defaults to:

null

getPadding : Number / String

Returns the value of padding

Returns

Number / String

setPadding (padding)

Sets the value of padding

Parameters

padding :  Number / String

pattern : String
bindable bind

The value for the HTML5 pattern attribute. You can use this to change which keyboard layout will be used.

Even though it extends TextField, it will display the number keyboard.

Defaults to:

null

getPattern : String

Returns the value of pattern

Returns

String

setPattern (pattern)

Sets the value of pattern

Parameters

pattern :  String

picker : Object / Ext.picker.Date
bindable bind

An object that is used when creating the internal Ext.picker.Date component or a direct instance of Ext.picker.Date.

Defaults to:

true

getPicker : Object / Ext.picker.Date

Returns the value of picker

Returns

Object / Ext.picker.Date

setPicker (picker)

Sets the value of picker

Parameters

picker :  Object / Ext.picker.Date

placeholder : String
bindable bind

A string value displayed in the input when the control is empty.

Defaults to:

null

getPlaceholder : String

Returns the value of placeholder

Returns

String

setPlaceholder (placeholder)

Sets the value of placeholder

Parameters

placeholder :  String

plugins : Object / String / Object[] / String[]
bindable bind

An object or array of objects that will provide custom functionality for this component. If a string is provided or a string is one of the elements of the array, that string is treated as the type alias. For example, "listpaging" is the type alias for Ext.plugin.ListPaging. The full alias includes the "plugin." prefix (i.e., 'plugin.listpaging').

Plugins should derive from Ext.plugin.Abstract but this is not required. The only requirement for a valid plugin is that it contain an init() method that accepts a reference to the owning 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.

Example code

A plugin by alias:

 var list = Ext.create({
     xtype: 'list',
     itemTpl: '<div class="item">{title}</div>',
     store: 'Items',

     plugins: 'listpaging'
 });

Multiple plugins by alias:

 var list = Ext.create({
     xtype: 'list',
     itemTpl: '<div class="item">{title}</div>',
     store: 'Items',

     plugins: ['listpaging', 'pullrefresh']
 });

Single plugin by class name with config options:

 var list = Ext.create({
     xtype: 'list',
     itemTpl: '<div class="item">{title}</div>',
     store: 'Items',

     plugins: {
         type: 'listpaging',
         autoPaging: true
     }
 });

Multiple plugins by type and class name with config options:

 var list = Ext.create({
     xtype: 'list',
     itemTpl: '<div class="item">{title}</div>',
     store: 'Items',

     plugins: [{
         xclass: 'Ext.plugin.PullRefresh',
         pullRefreshText: 'Pull to refresh...'
     }, {
         type: 'listpaging',
         autoPaging: true
     }]
 });

getPlugins : Object / String / Object[] / String[]

Returns the value of plugins

Returns

Object / String / Object[] / String[]

setPlugins (plugins)

Sets the value of plugins

Parameters

plugins :  Object / String / Object[] / String[]

readOnly : Boolean
bindable bind

True to set the field DOM element readonly attribute to true.

Defaults to:

null

getReadOnly : Boolean

Returns the value of readOnly

Returns

Boolean

setReadOnly (readOnly)

Sets the value of readOnly

Parameters

readOnly :  Boolean

record : Ext.data.Model
bindable bind

A model instance which updates the Component's html based on it's tpl. Similar to the data configuration, but tied to to a record to make allow dynamic updates. This must be a model instance and not a configuration of one.

Defaults to:

null

getRecord : Ext.data.Model

Returns the value of record

Returns

Ext.data.Model

setRecord (record)

Sets the value of record

Parameters

record :  Ext.data.Model

renderTo : Ext.dom.Element

Optional element to render this Component to. Not required if this component is an item of a Container of a Container.

Defaults to:

null

required : Boolean
bindable bind

true to make this field required.

Note: this only causes a visual indication.

Doesn't prevent user from submitting the form.

Defaults to:

false

getRequired : Boolean

Returns the value of required

Returns

Boolean

setRequired (required)

Sets the value of required

Parameters

required :  Boolean

right : Number / String
bindable bind

The absolute right position of this Component; must be a valid CSS length value, e.g: 300, 100px, 30%, etc. Explicitly setting this value will make this Component become 'positioned', which means it will no longer participate in the layout of the Container that it resides in.

Defaults to:

null

getRight : Number / String

Returns the value of right

Returns

Number / String

setRight (right)

Sets the value of right

Parameters

right :  Number / String

scrollable : Boolean / String / Object
bindable bind

Configuration options to make this Component scrollable. Acceptable values are:

  • true to enable auto scrolling.
  • false (or null) to disable scrolling - this is the default.
  • x or horizontal to enable horizontal scrolling only
  • y or vertical to enable vertical scrolling only

Also accepts a configuration object for a Ext.scroll.Scroller if if advanced configuration is needed.

The getter for this config returns the Ext.scroll.Scroller instance. You can use the Scroller API to read or manipulate the scroll position:

// scrolls the component to 5 on the x axis and 10 on the y axis
component.getScrollable().scrollTo(5, 10);

Defaults to:

null

getScrollable : Boolean / String / Object

Returns the value of scrollable

Returns

Boolean / String / Object

setScrollable (scrollable)

Sets the value of scrollable

Parameters

scrollable :  Boolean / String / Object

showAnimation : String / Mixed
bindable bind

Animation effect to apply when the Component is being shown. Typically you want to use an inbound animation type such as 'fadeIn' or 'slideIn'. For more animations, check the Ext.fx.Animation#type config.

Defaults to:

null

getShowAnimation : String / Mixed

Returns the value of showAnimation

Returns

String / Mixed

setShowAnimation (showAnimation)

Sets the value of showAnimation

Parameters

showAnimation :  String / Mixed

startValue : Mixed
bindable bind

The value that the Field had at the time it was last focused. This is the value that is passed to the Ext.field.Text#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.

Defaults to:

false

getStartValue : Mixed

Returns the value of startValue

Returns

Mixed

setStartValue (startValue)

Sets the value of startValue

Parameters

startValue :  Mixed

style : String / Object
bindable bind

Additional CSS styles that will be rendered into an inline style attribute when the widget is rendered.

You can pass either a string syntax:

style: 'background:red'

Or by using an object:

style: {
    background: 'red'
}

When using the object syntax, you can define CSS Properties by using a string:

style: {
    'border-left': '1px solid red'
}

Although the object syntax is much easier to read, we suggest you to use the string syntax for better performance.

Defaults to:

null

setStyle (style)

Sets the value of style

Parameters

style :  String / Object

tabIndex : Number
bindable bind

The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo.

Defaults to:

null

getTabIndex Number

Return the actual tabIndex for this Focusable.

Returns

:Number

tabIndex attribute value

setTabIndex ( newTabIndex )

Set the tabIndex property for this Focusable. If the focusEl is available, set tabIndex attribute on it, too.

Parameters

newTabIndex :  Number

new tabIndex to set

textAlign : 'left' / 'center' / 'right'
bindable bind

The text alignment of this field.

Defaults to:

null

getTextAlign : 'left' / 'center' / 'right'

Returns the value of textAlign

Returns

'left' / 'center' / 'right'

setTextAlign (textAlign)

Sets the value of textAlign

Parameters

textAlign :  'left' / 'center' / 'right'

tooltip : String / Object

The tooltip for this component - can be a string to be used as innerHTML (html tags are accepted) or ToolTip config object.

The default behavior is to use a shared tip instance. The tooltip configuration is registered with the Ext.tip.Manager. To enable this, your application can set the Ext.app.Application#quickTips config, or an instance of the Ext.tip.Manager may be created manually.

To force a unique tooltip instance to be created, specify autoCreate: true on this configuration.

Configuring this with autoHide: false implies autoCreate: true so that the desired persistent behavior can be obtained with other targets still showing the singleton instance.

Defaults to:

null

top : Number / String
bindable bind

The absolute top position of this Component; must be a valid CSS length value, e.g: 300, 100px, 30%, etc. Explicitly setting this value will make this Component become 'positioned', which means it will no longer participate in the layout of the Container that it resides in.

Defaults to:

null

getTop : Number / String

Returns the value of top

Returns

Number / String

setTop (top)

Sets the value of top

Parameters

top :  Number / String

touchAction : Object

Emulates the behavior of the CSS touch-action property in a cross-browser compatible manner.

Keys in this object are touch action names, and values are false to disable a touch action or true to enable it. Accepted keys are:

  • panX
  • panY
  • pinchZoom
  • doubleTapZoom

All touch actions are enabled (true) by default, so it is usually only necessary to specify which touch actions to disable. For example, the following disables only horizontal scrolling and pinch-to-zoom on the component's main element:

touchAction: {
    panX: false,
    pinchZoom: false
}

Touch actions can be specified on reference elements using the reference element name, for example:

// disables horizontal scrolling on the main element, and double-tap-zoom
// on the child element named "body"
touchAction: {
    panY: false
    body: {
        doubleTapZoom: false
    }
}

The primary motivation for setting the touch-action of an element is to prevent the browser's default handling of a gesture such as pinch-to-zoom, or drag-to-scroll, so that the application can implement its own handling of that gesture on the element. Suppose, for example, a component has a custom drag handler on its element and wishes to prevent horizontal scrolling of its container while it is being dragged:

Ext.create('Ext.Widget', {
    touchAction: {
        panX: false
    },
    listeners: {
        drag: function(e) {
            // implement drag logic
        }
    }
});

Defaults to:

null

tpl : Function / String / String[]
bindable bind

A string, array of strings, or a function that returns JSX.

tpl = data =>

{data.first_name} {data.last_name}

Note The data configuration must be set for any content to be shown in the component when using this configuration.

Defaults to:

null

getTpl : Function / String / String[]

Returns the value of tpl

Returns

Function / String / String[]

setTpl (tpl)

Sets the value of tpl

Parameters

tpl :  Function / String / String[]

tplWriteMode : String
bindable bind

The Ext.(X)Template method to use when updating the content area of the Component.

Valid modes are:

  • append
  • insertAfter
  • insertBefore
  • insertFirst
  • overwrite

Defaults to:

'overwrite'

getTplWriteMode : String

Returns the value of tplWriteMode

Returns

String

setTplWriteMode (tplWriteMode)

Sets the value of tplWriteMode

Parameters

tplWriteMode :  String

triggers : Object
bindable bind

Ext.field.trigger.Trigger to use in this field. The keys in this object are unique identifiers for the triggers. The values in this object are Ext.field.trigger.Trigger configuration objects.

The weight value may be a negative value in order to position custom triggers ahead of default triggers like that of a DatePicker field.

getTriggers : Object

Returns the value of triggers

Returns

Object

setTriggers (triggers)

Sets the value of triggers

Parameters

triggers :  Object

ui : String / String[]

The ui or uis to be used on this Component

When a ui is configured, CSS class names are added to the element, created by appending the ui name(s) to each classCls and/or baseCls.

Defaults to:

null

userCls : String / String[]

One or more CSS classes to add to the component's primary element. This config is intended solely for use by the component instantiator (the "user"), not by derived classes.

For example:

 items: [{
     xtype: 'button',
     userCls: 'my-button'
 ...
 }]

Defaults to:

null

validateDisabled : Boolean
bindable bind

true to validate the field, even if it is disabled.

Defaults to:

false

getValidateDisabled : Boolean

Returns the value of validateDisabled

Returns

Boolean

setValidateDisabled (validateDisabled)

Sets the value of validateDisabled

Parameters

validateDisabled :  Boolean

validationMessage : String
bindable bind

For HTML5 validation, regex, etc., this is the error message returned if field is invalid.

Defaults to:

'Is in the wrong format'

getValidationMessage : String

Returns the value of validationMessage

Returns

String

setValidationMessage (validationMessage)

Sets the value of validationMessage

Parameters

validationMessage :  String

value : Object / Date
bindable bind

Default value for the field and the internal Ext.picker.Date component. Accepts an object of 'year', 'month' and 'day' values, all of which should be numbers, or a Date.

Example: {year: 1989, day: 1, month: 5} = 1st May 1989 or new Date()

getValue Date

Returns the Date value of this field. If you wanted a formatted date use the getFormattedValue method.

Returns

:Date

The date selected

setValue (value)

Sets the value of value

Parameters

value :  Object / Date

weight : Number

This value controls this item's order in a weighted Container (see parent).

Lower values gravitate towards the start of the container - the top in vertical layouts, the locale start side in horizontal layouts.

Defaults to:

null

width : Number / String
bindable bind

The width of this Component; must be a valid CSS length value, e.g: 300, 100px, 30%, etc. By default, if this is not explicitly set, this Component's element will simply have its own natural size. If set to auto, it will set the width to null meaning it will have its own natural size.

Defaults to:

null

getWidth : Number / String

Returns the value of width

Returns

Number / String

setWidth (width)

Sets the value of width

Parameters

width :  Number / String

xtype : String

The xtype configuration option can be used to optimize Component creation and rendering. It serves as a shortcut to the full component name. For example, the component Ext.button.Button has an xtype of button.

You can define your own xtype on a custom Ext.Component by specifying the alias config option with a prefix of widget. For example:

Ext.define('PressMeButton', {
    extend: 'Ext.button.Button',
    alias: 'widget.pressmebutton',
    text: 'Press Me'
});

Any Component can be created implicitly as an object config with an xtype specified, allowing it to be declared and passed into the rendering pipeline without actually being instantiated as an object. Not only is rendering deferred, but the actual creation of the object itself is also deferred, saving memory and resources until they are actually needed. In complex, nested layouts containing many Components, this can make a noticeable improvement in performance.

// Explicit creation of contained Components:
var panel = new Ext.Panel({
   // ...
   items: [
      Ext.create('Ext.button.Button', {
         text: 'OK'
      })
   ]
});

// Implicit creation using xtype:
var panel = new Ext.Panel({
   // ...
   items: [{
      xtype: 'button',
      text: 'OK'
   }]
});

In the first example, the button will always be created immediately during the panel's initialization. With many added Components, this approach could potentially slow the rendering of the page. In the second example, the button will not be created or rendered until the panel is actually displayed in the browser. If the panel is never displayed (for example, if it is a tab that remains hidden) then the button will never be created and will never consume any resources whatsoever.

Defaults to:

"component"

zIndex : Number
bindable bind

The z-index to give this Component when it is rendered.

Not valid for floated Components. The Z ordering of floated Components is managed by ordering of the DOM elements.

Defaults to:

null

getZIndex : Number

Returns the value of zIndex

Returns

Number

setZIndex (zIndex)

Sets the value of zIndex

Parameters

zIndex :  Number

properties

Instance Properties

ariaRole : String
readonly ro

ARIA role for this Component, defaults to no role. With no role, no other ARIA attributes are set.

baseCls : String
protected pro

The base CSS class to apply to this widget's element. Used as the prefix for ui-specific class names. Defaults to the value of classCls or (x- + the xtype) of the widget if classCls is null

Defaults to:

null

classCls : String
protected pro

A CSS class to apply to the main element that will be inherited down the class hierarchy. Subclasses may override this property on their prototype to add their own CSS class in addition to the CSS classes inherited from ancestor classes via the prototype chain. For example

Ext.define('Foo', {
    extend: 'Ext.Widget',
    classCls: 'foo'
});

Ext.define('Bar', {
    extend: 'Foo',
    classCls: 'bar'
});

var bar = new Bar();

console.log(bar.element.className); // outputs 'foo bar'

Defaults to:

null

classClsRoot : Boolean
protected pro

When set to true during widget class definition, that class will be the "root" for classCls inheritance. Derived classes may set this to true to avoid inheriting a classCls from their superclass.

Defaults to:

true

clearPropertiesOnDestroy : Boolean / "async"
protected pro

Setting this property to false will prevent nulling object references on a Class instance after destruction. Setting this to "async" will delay the clearing for approx 50ms.

Defaults to:

true

Available since: 6.2.0

containsFocus : Boolean
readonly ro

true if this currently focused element is within this Component's or Container's hierarchy. This property is set separately from hasFocus, and can be true when hasFocus is false.

Examples:

  • Text field with input element focused would be: focusable: true, hasFocus: true, containsFocus: true

  • Date field with drop-down picker currently focused would be: focusable: true, hasFocus: false, containsFocus: true

  • Form Panel with a child input field currently focused would be: focusable: false, hasFocus: false, containsFocus: true

See also hasFocus.

Defaults to:

false

destroyed : Boolean
protected pro

This property is set to true after the destroy method is called.

Defaults to:

false

element : Object
protected pro

A configuration object for Ext.Element.create() that is used to create the Element template. Subclasses should avoid overriding this property and instead add elements using template.

Supports all the standard options of a Ext.Element.create() config and adds 3 additional options:

  1. reference - this option specifies a name for Element references. These references names become properties of the Widget instance and refer to Ext.Element instances that were created using the template:

     element: {
         reference: 'element',
         children: [{
             reference: 'innerElement'
         }]
     }
    

After construction of a widget the reference elements are accessible as follows:

var foo = new FooWidget(),
    innerEl = foo.innerElement; // an Ext.Element that wraps the innerElement

The reference attribute is optional, but all Widgets must have a 'element' reference on some element within the template (usually the outermost one).

  1. listeners - a standard listeners object as specified by Ext.mixin.Observable.

     element: {
         reference: 'element',
         listeners: {
             click: 'onClick'
         },
         children: [{
             reference: 'innerElement',
             listeners: {
                 click: 'onInnerClick'
             }
         }]
     }
    

Since listeners cannot be attached without an Ext.Element reference the reference property MUST be specified in order to use listeners.

The Widget instance is used as the scope for all listeners specified in this way, so it is invalid to use the scope option in the listeners config since it will always be overwritten using this.

  1. uiCls - a suffix to be appended to the ui-specific CSS class for each ui for this widget. These ui classes are constructed by appending the ui to each classCls or baseCls for the widget. As such, uiCls should never be used on the main element reference, as its uiCls is computed automatically.

For example, assume a widget is defined with a cfg!ui ui of 'alt action' and a uiCls of 'inner-el' on its innerElement reference element:

    Ext.define('Doodad', {
        extend: 'Ext.Widget',
        xtype: 'doodad',

        classCls: 'x-doodad',

        ui: 'alt action',

        element: {
             reference: 'element',

             children: [{
                 reference: 'innerElement',
                 cls: 'x-inner-el',
                 uiCls: 'inner-el'
             }]
        }
    });

This would result in the following markup when rendered:

<div class="x-doodad x-doodad-alt x-doodad-action">
    <div class="x-inner-el x-doodad-inner-el x-doodad-alt-inner-el x-doodad-action-inner-el"></div>
</div>

These additional classes can be used to style the reference element for a particular ui; however, use of uiCls is not typically necessary or recommended. Reference elements should usually be styled using simple descendant selectors:

.x-doodad-alt .x-inner-el {
    color: red;
}

When there is a possibility that widgets can be nested it is best to use direct child selectors to avoid the possibility of selecting all descendants instead of just the reference element for the intended widget:

.x-doodad-alt > .x-inner-el {
    color: red;
}

Only use uiCls when there is a possibility of nesting, AND there may be a variable number of elements between the main element and the reference element in question. For example, Ext.Container with docked items has a different number of elements in between its element and its bodyElement than a Container without docked items because of the wrapping elements that are dynamically added to support docking. To ensure it does not style all descendants it must use a uiCls to style its bodyElement:

.x-container-alt-body-el {
    background: #fff;
}

Note that when uiCls is specified it also adds a class name that does not contain the ui using just the classCls and/or baseCls as the prefix. This class name can be used for base-level styling that does not relate to any particular UI:

.x-container-body-el {
    position: relative;
}

factoryConfig : Object

If this property is specified by the target class of this mixin its properties are used to configure the created Ext.Factory.

focusable : Boolean
readonly ro

true for keyboard interactive Components or Widgets, false otherwise. For Containers, this property reflects interactiveness of the Container itself, not its children. See isFocusable.

Note: It is not enough to set this property to true to make a component keyboard interactive. You also need to make sure that the component's focusEl is reachable via Tab key (tabbable). See also tabIndex.

Defaults to:

false

focusClsEl : Ext.dom.Element

The element that will have the focusCls applied when component's focusEl is focused.

focusEl : Ext.dom.Element

The element that will be focused when focus method is called on this component. Usually this is the same element that receives focus via mouse clicks, taps, and pressing Tab key.

Defaults to:

'el'

hasFocus : Boolean
readonly ro

true if this component's focusEl is focused. See also containsFocus.

Defaults to:

false

hasListeners : Object
readonly ro

This object holds a key for any event that has a listener. The listener may be set directly on the instance, or on its class or a super class (via observe) or on the Ext.app.EventBus. The values of this object are truthy (a non-zero number) and falsy (0 or undefined). They do not represent an exact count of listeners. The value for an event is truthy if the event must be fired and is falsy if there is no need to fire the event.

The intended use of this property is to avoid the expense of fireEvent calls when there are no listeners. This can be particularly helpful when one would otherwise have to call fireEvent hundreds or thousands of times. It is used like this:

 if (this.hasListeners.foo) {
     this.fireEvent('foo', this, arg1);
 }

isConfiguring : Boolean
readonly ro protected pro

This property is set to true during the call to initConfig.

Defaults to:

false

Available since: 5.0.0

isField : Boolean

Set to true on all Ext.field.Field subclasses. This is used by Ext.form.Panel#getValues to determine which components inside a form are fields.

Defaults to:

true

isFirstInstance : Boolean
readonly ro protected pro

This property is set to true if this instance is the first of its class.

Defaults to:

false

Available since: 5.0.0

isInstance : Boolean
readonly ro protected pro

This value is true and is used to identify plain objects from instances of a defined class.

Defaults to:

true

isObservable : Boolean

true in this class to identify an object as an instantiated Observable, or subclass thereof.

Defaults to:

true

labelElement : Ext.dom.Element

The label Element associated with this Field.

self : Ext.Class
protected pro

Get the reference to the current class from which this object was instantiated. Unlike Ext.Base#statics, this.self is scope-dependent and it's meant to be used for dynamic inheritance. See Ext.Base#statics for a detailed comparison

Ext.define('My.Cat', {
    statics: {
        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'
    },

    constructor: function() {
        alert(this.self.speciesName); // dependent on 'this'
    },

    clone: function() {
        return new this.self();
    }
});


Ext.define('My.SnowLeopard', {
    extend: 'My.Cat',
    statics: {
        speciesName: 'Snow Leopard'         // My.SnowLeopard.speciesName = 'Snow Leopard'
    }
});

var cat = new My.Cat();                     // alerts 'Cat'
var snowLeopard = new My.SnowLeopard();     // alerts 'Snow Leopard'

var clone = snowLeopard.clone();
alert(Ext.getClassName(clone));             // alerts 'My.SnowLeopard'

statics
protected pro

Get the reference to the class from which this object was instantiated. Note that unlike Ext.Base#self, this.statics() is scope-independent and it always returns the class from which it was called, regardless of what this points to during run-time

Ext.define('My.Cat', {
    statics: {
        totalCreated: 0,
        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'
    },

    constructor: function() {
        var statics = this.statics();

        alert(statics.speciesName);     // always equals to 'Cat' no matter what 'this' refers to
                                        // equivalent to: My.Cat.speciesName

        alert(this.self.speciesName);   // dependent on 'this'

        statics.totalCreated++;
    },

    clone: function() {
        var cloned = new this.self();   // dependent on 'this'

        cloned.groupName = this.statics().speciesName;   // equivalent to: My.Cat.speciesName

        return cloned;
    }
});


Ext.define('My.SnowLeopard', {
    extend: 'My.Cat',

    statics: {
        speciesName: 'Snow Leopard'     // My.SnowLeopard.speciesName = 'Snow Leopard'
    },

    constructor: function() {
        this.callParent();
    }
});

var cat = new My.Cat();                 // alerts 'Cat', then alerts 'Cat'

var snowLeopard = new My.SnowLeopard(); // alerts 'Cat', then alerts 'Snow Leopard'

var clone = snowLeopard.clone();
alert(Ext.getClassName(clone));         // alerts 'My.SnowLeopard'
alert(clone.groupName);                 // alerts 'Cat'

alert(My.Cat.totalCreated);             // alerts 3

Returns

:Ext.Class

template : Array
protected pro

An array of child elements to use as the children of the main element in the element template. Only used if "children" are not specified explicitly in the element template.

validateOnInit : "none" / "auto" / "all"

Determines how initial values will handle validation

  • none: Will not validate any initial values
  • auto: Will only validate non-empty initial values
  • all: Will validate all initial values

Defaults to:

'auto'

methods

Instance Methods

addCls ( cls, [prefix], [suffix] )

Adds a CSS class (or classes) to this Component's rendered element.

Parameters

cls :  String / String[]

The CSS class(es) to add.

prefix :  String (optional)

Optional prefix to add to each class.

Defaults to: ""

suffix :  String (optional)

Optional suffix to add to each class.

Defaults to: ""

addListener ( eventName, [fn], [scope], [options], [order] ) : Object

The on method is shorthand for addListener.

Appends an event handler to this object. For example:

myGridPanel.on("itemclick", this.onItemClick, this);

The method also allows for a single argument to be passed which is a config object containing properties which specify multiple events. For example:

myGridPanel.on({
    cellclick: this.onCellClick,
    select: this.onSelect,
    viewready: this.onViewReady,
    scope: this // Important. Ensure "this" is correct during handler execution
});

One can also specify options for each event handler separately:

myGridPanel.on({
    cellclick: {fn: this.onCellClick, scope: this, single: true},
    viewready: {fn: panel.onViewReady, scope: panel}
});

Names of methods in a specified scope may also be used:

myGridPanel.on({
    cellclick: {fn: 'onCellClick', scope: this, single: true},
    viewready: {fn: 'onViewReady', scope: panel}
});

Parameters

eventName :  String / Object

The name of the event to listen for. May also be an object who's property names are event names.

fn :  Function / String (optional)

The method the event invokes or the name of the method within the specified scope. Will be called with arguments given to Ext.util.Observable#fireEvent plus the options parameter described below.

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.

Note: The options object will also be passed as the last argument to every event handler.

This object may contain any of the following properties:

scope :  Object

The scope (`this` reference) in which the handler function is executed. **If omitted, defaults to the object which fired the event.**

delay :  Number

The number of milliseconds to delay the invocation of the handler after the event fires.

single :  Boolean

True to add a handler to handle just the next firing of the event, and then remove itself.

buffer :  Number

Causes the handler to be scheduled to run in an Ext.util.DelayedTask delayed by the specified number of milliseconds. If the event fires again within that time, the original handler is _not_ invoked, but the new handler is scheduled in its place.

onFrame :  Number

Causes the handler to be scheduled to run at the next animation frame event. If the event fires again before that time, the handler is not rescheduled - the handler will only be called once when the next animation frame is fired, with the last set of arguments passed.

target :  Ext.util.Observable

Only call the handler if the event was fired on the target Observable, _not_ if the event was bubbled up from a child Observable.

element :  String

**This option is only valid for listeners bound to Ext.Component.** The name of a Component property which references an Ext.dom.Element to add a listener to. This option is useful during Component construction to add DOM event listeners to elements of Ext.Component which will exist only after the Component is rendered. For example, to add a click listener to a Panel's body: var panel = new Ext.panel.Panel({ title: 'The title', listeners: { click: this.handlePanelClick, element: 'body' } }); In order to remove listeners attached using the element, you'll need to reference the element itself as seen below. panel.body.un(...)

delegate :  String (optional)

A simple selector to filter the event target or look for a descendant of the target. The "delegate" option is only available on Ext.dom.Element instances (or when attaching a listener to a Ext.dom.Element via a Component using the element option). See the *delegate* example below.

capture :  Boolean (optional)

When set to `true`, the listener is fired in the capture phase of the event propagation sequence, instead of the default bubble phase. The capture option is only available on Ext.dom.Element instances (or when attaching a listener to a Ext.dom.Element via a Component using the element option).

stopPropagation :  Boolean (optional)

**This option is only valid for listeners bound to Ext.dom.Element.** `true` to call stopPropagation on the event object before firing the handler.

preventDefault :  Boolean (optional)

**This option is only valid for listeners bound to Ext.dom.Element.** `true` to call preventDefault on the event object before firing the handler.

stopEvent :  Boolean (optional)

**This option is only valid for listeners bound to Ext.dom.Element.** `true` to call stopEvent on the event object before firing the handler.

args :  Array (optional)

Optional arguments to pass to the handler function. Any additional arguments passed to fireEvent will be appended to these arguments.

destroyable :  Boolean (optional)

When specified as `true`, the function returns a `destroyable` object. An object which implements the `destroy` method which removes all listeners added in this call. This syntax can be a helpful shortcut to using un; particularly when removing multiple listeners. *NOTE* - not compatible when using the _element_ option. See un for the proper syntax for removing listeners added using the _element_ config.

Defaults to:

priority :  Number (optional)

An optional numeric priority that determines the order in which event handlers are run. Event handlers with no priority will be run as if they had a priority of 0. Handlers with a higher priority will be prioritized to run sooner than those with a lower priority. Negative numbers can be used to set a priority lower than the default. Internally, the framework uses a range of 1000 or greater, and -1000 or lesser for handlers that are intended to run before or after all others, so it is recommended to stay within the range of -999 to 999 when setting the priority of event handlers in application-level code. A priority must be an integer to be valid. Fractional values are reserved for internal framework use.

order :  String (optional)

A legacy option that is provided for backward compatibility. It is recommended to use the `priority` option instead. Available options are: - `'before'`: equal to a priority of `100` - `'current'`: equal to a priority of `0` or default priority - `'after'`: equal to a priority of `-100`

Defaults to:

order :  String (optional)

A shortcut for the order event option. Provided for backward compatibility. Please use the priority event option instead.

Combining Options

Using the options argument, it is possible to combine different types of listeners:

A delayed, one-time listener.

myPanel.on('hide', this.handleClick, this, {
    single: true,
    delay: 100
});

Attaching multiple handlers in 1 call

The method also allows for a single argument to be passed which is a config object containing properties which specify multiple handlers and handler configs.

grid.on({
    itemclick: 'onItemClick',
    itemcontextmenu: grid.onItemContextmenu,
    destroy: {
        fn: function () {
            // function called within the 'altCmp' scope instead of grid
        },
        scope: altCmp // unique scope for the destroy handler
    },
    scope: grid       // default scope - provided for example clarity
});

Delegate

This is a configuration option that you can pass along when registering a handler for an event to assist with event delegation. By setting this configuration option to a simple selector, the target element will be filtered to look for a descendant of the target. For example:

var panel = Ext.create({
    xtype: 'panel',
    renderTo: document.body,
    title: 'Delegate Handler Example',
    frame: true,
    height: 220,
    width: 220,
    html: '<h1 class="myTitle">BODY TITLE</h1>Body content'
});

// The click handler will only be called when the click occurs on the
// delegate: h1.myTitle ("h1" tag with class "myTitle")
panel.on({
    click: function (e) {
        console.log(e.getTarget().innerHTML);
    },
    element: 'body',
    delegate: 'h1.myTitle'
 });

Defaults to: 'current'

Returns

:Object

Only when the destroyable option is specified.

A Destroyable object. An object which implements the destroy method which removes all listeners added in this call. For example:

this.btnListeners =  = myButton.on({
    destroyable: true
    mouseover:   function() { console.log('mouseover'); },
    mouseout:    function() { console.log('mouseout'); },
    click:       function() { console.log('click'); }
});

And when those listeners need to be removed:

Ext.destroy(this.btnListeners);

or

this.btnListeners.destroy();

addManagedListener ( item, ename, [fn], [scope], [options] ) : Object

The addManagedListener method is used when some object (call it "A") is listening to an event on another observable object ("B") and you want to remove that listener from "B" when "A" is destroyed. This is not an issue when "B" is destroyed because all of its listeners will be removed at that time.

Example:

Ext.define('Foo', {
    extend: 'Ext.Component',

    initComponent: function () {
        this.addManagedListener(MyApp.SomeGlobalSharedMenu, 'show', this.doSomething);
        this.callParent();
    }
});

As you can see, when an instance of Foo is destroyed, it ensures that the 'show' listener on the menu (MyApp.SomeGlobalSharedMenu) is also removed.

As of version 5.1 it is no longer necessary to use this method in most cases because listeners are automatically managed if the scope object provided to addListener is an Observable instance. However, if the observable instance and scope are not the same object you still need to use mon or addManagedListener if you want the listener to be managed.

Parameters

item :  Ext.util.Observable / Ext.dom.Element

The item to which to add a listener/listeners.

ename :  Object / String

The event name, or an object containing event name properties.

fn :  Function / String (optional)

If the ename parameter was an event name, this is the handler function or the name of a method on the specified scope.

scope :  Object (optional)

If the ename parameter was an event name, this is the scope (this reference) in which the handler function is executed.

options :  Object (optional)

If the ename parameter was an event name, this is the addListener options.

Returns

:Object

Only when the destroyable option is specified.

A Destroyable object. An object which implements the destroy method which removes all listeners added in this call. For example:

this.btnListeners = myButton.mon({
    destroyable: true
     mouseover:   function() { console.log('mouseover'); },
    mouseout:    function() { console.log('mouseout'); },
    click:       function() { console.log('click'); }
});

And when those listeners need to be removed:

Ext.destroy(this.btnListeners);

or

this.btnListeners.destroy();

addPlugin ( plugin )

Adds a plugin. For example:

 list.addPlugin('pullrefresh');

Or:

 list.addPlugin({
     type: 'pullrefresh',
     pullRefreshText: 'Pull to refresh...'
 });

Available since: 6.2.0

Parameters

plugin :  Object / String / Ext.plugin.Abstract

The plugin or config object or alias to add.

addTrigger ( name, trigger ) : Ext.field.trigger.Trigger

Adds a trigger to this text field.

Parameters

name :  String

Unique name (within this field) for the trigger. Cannot be the same as the name of an existing trigger for this field.

trigger :  Ext.field.trigger.Trigger / Object

The trigger instance or a prop object for a trigger to add

Returns

:Ext.field.trigger.Trigger

The trigger that was added

callParent ( args ) : Object
protected pro

Call the "parent" method of the current method. That is the method previously overridden by derivation or by an override (see Ext#define).

 Ext.define('My.Base', {
     constructor: function (x) {
         this.x = x;
     },

     statics: {
         method: function (x) {
             return x;
         }
     }
 });

 Ext.define('My.Derived', {
     extend: 'My.Base',

     constructor: function () {
         this.callParent([21]);
     }
 });

 var obj = new My.Derived();

 alert(obj.x);  // alerts 21

This can be used with an override as follows:

 Ext.define('My.DerivedOverride', {
     override: 'My.Derived',

     constructor: function (x) {
         this.callParent([x*2]); // calls original My.Derived constructor
     }
 });

 var obj = new My.Derived();

 alert(obj.x);  // now alerts 42

This also works with static and private methods.

 Ext.define('My.Derived2', {
     extend: 'My.Base',

     // privates: {
     statics: {
         method: function (x) {
             return this.callParent([x*2]); // calls My.Base.method
         }
     }
 });

 alert(My.Base.method(10));     // alerts 10
 alert(My.Derived2.method(10)); // alerts 20

Lastly, it also works with overridden static methods.

 Ext.define('My.Derived2Override', {
     override: 'My.Derived2',

     // privates: {
     statics: {
         method: function (x) {
             return this.callParent([x*2]); // calls My.Derived2.method
         }
     }
 });

 alert(My.Derived2.method(10); // now alerts 40

To override a method and replace it and also call the superclass method, use method-callSuper. This is often done to patch a method to fix a bug.

Parameters

args :  Array / Arguments

The arguments, either an array or the arguments object from the current method, for example: this.callParent(arguments)

Returns

:Object

Returns the result of calling the parent method

callSuper ( args ) : Object
protected pro

This method is used by an override to call the superclass method but bypass any overridden method. This is often done to "patch" a method that contains a bug but for whatever reason cannot be fixed directly.

Consider:

 Ext.define('Ext.some.Class', {
     method: function () {
         console.log('Good');
     }
 });

 Ext.define('Ext.some.DerivedClass', {
     extend: 'Ext.some.Class',

     method: function () {
         console.log('Bad');

         // ... logic but with a bug ...

         this.callParent();
     }
 });

To patch the bug in Ext.some.DerivedClass.method, the typical solution is to create an override:

 Ext.define('App.patches.DerivedClass', {
     override: 'Ext.some.DerivedClass',

     method: function () {
         console.log('Fixed');

         // ... logic but with bug fixed ...

         this.callSuper();
     }
 });

The patch method cannot use method-callParent to call the superclass method since that would call the overridden method containing the bug. In other words, the above patch would only produce "Fixed" then "Good" in the console log, whereas, using callParent would produce "Fixed" then "Bad" then "Good".

Parameters

args :  Array / Arguments

The arguments, either an array or the arguments object from the current method, for example: this.callSuper(arguments)

Returns

:Object

Returns the result of calling the superclass method

center Ext.Component

Center this floated or positioned Component in its parent.

Returns

:Ext.Component

this

clearListeners

Removes all listeners for this object including the managed listeners

clearManagedListeners

Removes all managed listeners for this object.

completeEdit
protected pro

Called when focus leaves this input field. Used to post-process raw values and perform conversion and validation.

constructor ( config )

Creates new Component.

Parameters

config :  Object

The standard configuration object.

destroy

Destroys the Widget. This method should not be overridden in custom Widgets, because it sets the flags and does final cleanup that must go last. Instead, override doDestroy method to add functionality at destruction time.

destroyPlugin ( plugin ) : Ext.plugin.Abstract

Removes and destroys a plugin.

Note: Not all plugins are designed to be removable. Consult the documentation for the specific plugin in question to be sure.

Available since: 6.2.0

Parameters

plugin :  String / Ext.plugin.Abstract

The plugin or its id to remove.

Returns

:Ext.plugin.Abstract

plugin instance or null if not found.

disable

Disables this Component

doDestroy

Perform the actual destruction sequence. This is the method to override in your subclasses to add steps specific to the destruction of custom Component.

If the Component is currently added to a Container it will first be removed from that Container. All Ext.Element references are also deleted and the Component is de-registered from Ext.ComponentManager.

As a rule of thumb, subclasses should destroy their child Components, Elements, and/or other objects before calling parent method. Any object references will be nulled after this method has finished, to prevent the possibility of memory leaks.

Available since: 6.2.0

enable

Enables this Component

enableBubble ( eventNames )

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.define('Ext.overrides.form.field.Base', {
    override: 'Ext.form.field.Base',

    //  Add functionality to Field's initComponent to enable the change event to bubble
    initComponent: function () {
        this.callParent();
        this.enableBubble('change');
    }
});

var myForm = Ext.create('Ext.form.Panel', {
    title: 'User Details',
    items: [{
        ...
    }],
    listeners: {
        change: function() {
            // Title goes red if form has been modified.
            myForm.header.setStyle('color', 'red');
        }
    }
});

Parameters

eventNames :  String / String[]

The event name to bubble, or an Array of event names.

findPlugin ( type ) : Ext.plugin.Abstract

Retrieves plugin by its type alias. For example:

 var list = Ext.create({
     xtype: 'list',
     itemTpl: '<div class="item">{title}</div>',
     store: 'Items',

     plugins: ['listpaging', 'pullrefresh']
 });

 list.findPlugin('pullrefresh').setPullRefreshText('Pull to refresh...');

Note: See also getPlugin.

Available since: 6.2.0

Parameters

type :  String

The Plugin's type as specified by the class's alias configuration.

Returns

:Ext.plugin.Abstract

plugin instance or null if not found.

fireEvent ( eventName, args ) : Boolean

Fires the specified event with the passed parameters (minus the event name, plus the options object passed to addListener).

An event may be set to bubble up an Observable parent hierarchy (See Ext.Component#getBubbleTarget) by calling enableBubble.

Parameters

eventName :  String

The name of the event to fire.

args :  Object...

Variable number of parameters are passed to handlers.

Returns

:Boolean

returns false if any of the handlers return false otherwise it returns true.

fireEventArgs ( eventName, args ) : Boolean

Fires the specified event with the passed parameter list.

An event may be set to bubble up an Observable parent hierarchy (See Ext.Component#getBubbleTarget) by calling enableBubble.

Parameters

eventName :  String

The name of the event to fire.

args :  Object[]

An array of parameters which are passed to handlers.

Returns

:Boolean

returns false if any of the handlers return false otherwise it returns true.

fireEventedAction ( eventName, args, fn, [scope], [fnArgs] )

Fires the specified event with the passed parameters and executes a function (action). Evented Actions will automatically dispatch a 'before' event passing. This event will be given a special controller that allows for pausing/resuming of the event flow.

By pausing the controller the updater and events will not run until resumed. Pausing, however, will not stop the processing of any other before events.

Parameters

eventName :  String

The name of the event to fire.

args :  Array

Arguments to pass to handlers and to the action function.

fn :  Function / String

The action function.

scope :  Object (optional)

The scope (this reference) in which the handler function is executed. If omitted, defaults to the object which fired the event.

fnArgs :  Array / Boolean (optional)

Optional arguments for the action fn. If not given, the normal args will be used to call fn. If false is passed, the args are used but if the first argument is this instance it will be removed from the args passed to the action function.

focus ( [selectText] ) : Boolean

Try to focus this component.

If this component is disabled or otherwise not focusable, a close relation will be targeted for focus instead to keep focus localized for keyboard users.

Parameters

selectText :  Boolean / Number[] (optional)

If applicable, true to also select all the text in this component, or an array consisting of start and end (defaults to start) position of selection.

Returns

:Boolean

true if focus target was found and focusing was attempted, false if no focusing attempt was made.

from ( el, [limit], [selector] ) : Ext.Component / null

Find the Widget or Component to which the given event/element belongs.

Available since: 6.5.0

Parameters

el :  Ext.event.Event / Ext.dom.Element / HTMLElement

The element or event from which to start to find an owning Component.

limit :  Ext.dom.Element / HTMLElement (optional)

The element at which to stop upward searching for an owning Component, or the number of Components to traverse before giving up. Defaults to the document's HTML element.

selector :  String (optional)

An optional Ext.ComponentQuery selector to filter the target.

Returns

:Ext.Component / null

Component, or null

getActiveError String

Gets the active error message for this component, if any. This does not trigger validation on its own, it merely returns any message that the component may already hold.

Returns

:String

The active error message on the component; if there is no error, an empty string is returned.

getActiveErrors Array

Gets the array of active errors for this component, if any.

Returns

:Array

The active error message(s) on the component.

getConfig ( [name], [peek], [ifInitialized] ) : Object

Returns a specified config property value. If the name parameter is not passed, all current configuration options will be returned as key value pairs.

Parameters

name :  String (optional)

The name of the config property to get.

peek :  Boolean (optional)

true to peek at the raw value without calling the getter.

Defaults to: false

ifInitialized :  Boolean (optional)

true to only return the initialized property value, not the raw config value, and not to trigger initialization. Returns undefined if the property has not yet been initialized.

Defaults to: false

Returns

:Object

The config property value.

getElementConfig Object
protected pro

A template method for modifying the element config before it is processed. By default adds the result of this.getTemplate() as the children array of element if children were not specified in the original element config. Typically this method should not need to be implemented in subclasses. Instead the element property should be use to configure the element template for a given Widget subclass.

This method is called once when the first instance of each Widget subclass is created. The element config object that is returned is cached and used as the template for all successive instances. The scope object for this method is the class prototype, not the instance.

Returns

:Object

the element config object

getFloatedStack ( selector )

Returns the stack of floated components in which this Component resides. This Component and all siblings at this level are returned.

Parameters

selector :  String / Function

A ComponentQuery selector, or a selection function which returns true to select a component.

getFocusClsEl ( [focusEl] ) : Ext.dom.Element
protected pro

Returns the element used to apply focus styling CSS class when Focusable's focusEl becomes focused. By default it is focusEl.

Parameters

focusEl :  Ext.dom.Element (optional)

Return focus styling element for the given focused element. This is used by Components implementing multiple focusable elements.

Returns

:Ext.dom.Element

The focus styling element.

getFocusEl Ext.dom.Element
protected pro

Returns the main focus holder element associated with this Focusable, i.e. the element that will be focused when Focusable's focus method is called. For the most Focusables this will be the focusEl.

Returns

:Ext.dom.Element

getFormattedValue ( format ) : String

Returns the value of the field formatted using the specified format. If it is not specified, it will default to dateFormat and then Ext.util.Format#defaultDateFormat.

Parameters

format :  String

The format to be returned.

Returns

:String

The formatted date.

getInherited ( [inner] ) : Object

This method returns an object containing the inherited properties for this instance.

Available since: 5.0.0

Parameters

inner :  Boolean (optional)

Pass true to return inheritedStateInner instead of the normal inheritedState object. This is only needed internally and should not be passed by user code.

Defaults to: false

Returns

:Object

The inheritedState object containing inherited properties.

getInheritedConfig ( property, [skipThis] ) : Mixed

This method returns the value of a config property that may be inherited from some ancestor.

In some cases, a config may be explicitly set on a component with the intent of only being presented to its children while that component should act upon the inherited value (see referenceHolder for example). In these cases the skipThis parameter should be specified as true.

Available since: 5.0.0

Parameters

property :  String

The name of the config property to return.

skipThis :  Boolean (optional)

Pass true if the property should be ignored if found on this instance. In other words, true means the property must be inherited and not explicitly set on this instance.

Defaults to: false

Returns

:Mixed

The value of the requested property.

getInitialConfig ( [name] ) : Object / Mixed

Returns the initial configuration passed to the constructor when instantiating this class.

Given this example Ext.button.Button definition and instance:

Ext.define('MyApp.view.Button', {
    extend: 'Ext.button.Button',
    xtype: 'mybutton',

    scale: 'large',
    enableToggle: true
});

var btn = Ext.create({
    xtype: 'mybutton',
    renderTo: Ext.getBody(),
    text: 'Test Button'
});

Calling btn.getInitialConfig() would return an object including the config options passed to the create method:

xtype: 'mybutton',
renderTo: // The document body itself
text: 'Test Button'

Calling btn.getInitialConfig('text')returns 'Test Button'.

Parameters

name :  String (optional)

Name of the config option to return.

Returns

:Object / Mixed

The full config object or a single config value when name parameter specified.

getParent Ext.Component

Returns the parent of this component, if it has one.

Returns

:Ext.Component

The parent of this component.

getPlugin ( id ) : Ext.plugin.Abstract

Retrieves a plugin by its id.

 var list = Ext.create({
     xtype: 'list',
     itemTpl: '<div class="item">{title}</div>',
     store: 'Items',

     plugins: {
         xclass: 'Ext.plugin.PullRefresh',
         id: 'foo'
     }
 });

 list.getPlugin('foo').setPullRefreshText('Pull to refresh...');

Note: See also findPlugin.

Available since: 6.2.0

Parameters

id :  String

The id of the plugin.

Returns

:Ext.plugin.Abstract

plugin instance or null if not found.

getRefOwner
protected pro

Used by Ext.ComponentQuery, and the up method to find the owning Component in the linkage hierarchy.

By default this returns the Container which contains this Component.

This may be overridden by Component authors who implement ownership hierarchies which are not based upon ownerCt, such as BoundLists being owned by Fields or Menus being owned by Buttons.

getSize Object

Returns the height and width of the Component.

Returns

:Object

The current height and width of the Component.

width :  Number

height :  Number

getXTypes String

Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all available xtypes, see the Ext.Component header.

Note: 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.field.Text();
alert(t.getXTypes());  // alerts 'component/field/textfield'

Returns

:String

The xtype hierarchy string.

hasActiveError Boolean

Tells whether the field currently has an active error message. This does not trigger validation on its own, it merely looks for any message that the component may already hold.

Returns

:Boolean

hasCls ( className ) : Boolean

Checks if the specified CSS class exists on this element's DOM node.

Parameters

className :  String

The CSS class to check for.

Returns

:Boolean

true if the class exists, else false.

hasListener ( eventName ) : Boolean

Checks to see if this object has any listeners for a specified event, or whether the event bubbles. The answer indicates whether the event needs firing or not.

Parameters

eventName :  String

The name of the event to check for

Returns

:Boolean

true if the event is being listened for or bubbles, else false

hasParent Boolean

Returns true if this component has a parent.

Returns

:Boolean

true if this component has a parent.

hide ( [animation] ) : Ext.Component
chainable ch

Hides this Component optionally using an animation.

Parameters

animation :  Object / Boolean (optional)

You can specify an animation here or a bool to use the hideAnimation config.

Returns

:Ext.Component

initConfig ( instanceConfig ) : Ext.Base
chainable ch protected pro

Initialize configuration for this class. a typical example:

Ext.define('My.awesome.Class', {
    // The default config
    config: {
        name: 'Awesome',
        isAwesome: true
    },

    constructor: function(config) {
        this.initConfig(config);
    }
});

var awesome = new My.awesome.Class({
    name: 'Super Awesome'
});

alert(awesome.getName()); // 'Super Awesome'

Parameters

instanceConfig :  Object

Returns

:Ext.Base

this

initElement
protected pro

Initializes the Element for this Widget instance. If this is the first time a Widget of this type has been instantiated the element config will be processed to create an Element. This Element is then cached on the prototype (see afterCachedConfig) so that future instances can obtain their element by simply cloning the Element that was cached by the first instance.

initFocusable
template tpl protected pro

Template method to do any Focusable related initialization that does not involve event listeners creation.

This is a template method. a hook into the functionality of this class. Feel free to override it in child classes.

initFocusableEvents
protected pro

Template method to do any event listener initialization for a Focusable. This generally happens after the focusEl is available.

initInheritedState ( inheritedState, [inheritedStateInner] )
protected pro

This method is called to initialize the inheritedState objects for this instance. This amounts to typically copying certain properties from the instance to the given object.

Available since: 5.0.0

Parameters

inheritedState :  Object

The state object for this instance.

inheritedStateInner :  Object (optional)

This object is only provided for containers.

initKeyMap
protected pro

This method should be called when the instance is ready to start listening for keyboard events. This is called automatically for Ext.Component and derived classes. In Classic Toolkit, this is done after the component is rendered.

initialize
template tpl protected pro

Allows addition of behavior to the rendering phase.

This is a template method. a hook into the functionality of this class. Feel free to override it in child classes.

is ( selector ) : Boolean

Tests whether this Widget matches a Ext.ComponentQuery selector string.

Parameters

selector :  String

The selector string to test against.

Returns

:Boolean

true if this Widget matches the selector.

isAncestor ( possibleDescendant )

Determines whether this Component is an ancestor of the passed Component. This will return true if the passed Component is anywhere within the subtree beneath this Component.

Parameters

possibleDescendant :  Ext.Component

The Component to test for presence within this Component's subtree.

isDescendantOf ( ancestor ) : Boolean

Determines whether this component is the descendant of a passed component.

Parameters

ancestor :  Ext.Component

A Component which may contain this Component.

Returns

:Boolean

true if the component is the descendant of the passed component, otherwise false.

isDirty Boolean

Returns true if the value of this Field has been changed from its originalValue. Will return false if the field is disabled or has not been rendered yet.

Returns

:Boolean

true if this field has been changed from its original value (and is not disabled), false otherwise.

isDisabled Boolean

Returns true if this Component is currently disabled.

Returns

:Boolean

true if currently disabled.

isEqual ( value1, value2 ) : Boolean

Returns whether two field values are logically equal. Field implementations may override this to provide custom comparison logic appropriate for the particular field's data type.

Parameters

value1 :  Object

The first value to compare

value2 :  Object

The second value to compare

Returns

:Boolean

True if the values are equal, false if inequal.

isFocusable ( [deep] ) : Boolean

Determine if this Focusable can receive focus at this time.

Note that Containers can be non-focusable themselves while delegating focus treatment to a child Component; see Container for more information.

Parameters

deep :  Boolean (optional)

Optionally determine if the container itself is focusable, or if container's focus is delegated to a child component and that child is focusable.

Defaults to: false

Returns

:Boolean

True if component is focusable, false if not.

isHidden ( [deep] ) : Boolean

Returns true if this Component is currently hidden.

Parameters

deep :  Boolean / Ext.Widget (optional)

true to check if this component is hidden because a parent container is hidden. Alternatively, a reference to the top-most parent at which to stop climbing.

Defaults to: false

Returns

:Boolean

true if currently hidden.

isSuspended ( [event] ) : Boolean

Checks if all events, or a specific event, is suspended.

Parameters

event :  String (optional)

The name of the specific event to check

Returns

:Boolean

true if events are suspended

isValid

Returns true if field is valid.

isVisible ( [deep] ) : Boolean

Returns true if this Component is currently visible.

Parameters

deep :  Boolean (optional)

true to check if this component is visible and all parents are also visible.

Defaults to: false

Returns

:Boolean

true if currently visible.

isXType ( xtype, [shallow] ) : Boolean

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 to participate in determination of inherited xtypes.__

For a list of all available xtypes, see the Ext.Component header.

Example usage:

var t = new Ext.field.Text();
var isText = t.isXType('textfield'); // true
var isBoxSubclass = t.isXType('field'); // true, descended from Ext.field.Field
var isBoxInstance = t.isXType('field', true); // false, not a direct Ext.field.Field instance

Parameters

xtype :  String

The 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

:Boolean

true if this component descends from the specified xtype, false otherwise.

lookupTpl ( name ) : Ext.XTemplate

Gets a named template instance for this class. See Ext.XTemplate#getTpl.

Available since: 6.2.0

Parameters

name :  String

The name of the property that holds the template.

Returns

:Ext.XTemplate

The template, null if not found.

markInvalid

Mark field as invalid.

mon ( item, ename, [fn], [scope], [options] ) : Object

Shorthand for addManagedListener. The addManagedListener method is used when some object (call it "A") is listening to an event on another observable object ("B") and you want to remove that listener from "B" when "A" is destroyed. This is not an issue when "B" is destroyed because all of its listeners will be removed at that time.

Example:

Ext.define('Foo', {
    extend: 'Ext.Component',

    initComponent: function () {
        this.addManagedListener(MyApp.SomeGlobalSharedMenu, 'show', this.doSomething);
        this.callParent();
    }
});

As you can see, when an instance of Foo is destroyed, it ensures that the 'show' listener on the menu (MyApp.SomeGlobalSharedMenu) is also removed.

As of version 5.1 it is no longer necessary to use this method in most cases because listeners are automatically managed if the scope object provided to addListener is an Observable instance. However, if the observable instance and scope are not the same object you still need to use mon or addManagedListener if you want the listener to be managed.

Parameters

item :  Ext.util.Observable / Ext.dom.Element

The item to which to add a listener/listeners.

ename :  Object / String

The event name, or an object containing event name properties.

fn :  Function / String (optional)

If the ename parameter was an event name, this is the handler function or the name of a method on the specified scope.

scope :  Object (optional)

If the ename parameter was an event name, this is the scope (this reference) in which the handler function is executed.

options :  Object (optional)

If the ename parameter was an event name, this is the addListener options.

Returns

:Object

Only when the destroyable option is specified.

A Destroyable object. An object which implements the destroy method which removes all listeners added in this call. For example:

this.btnListeners = myButton.mon({
    destroyable: true
     mouseover:   function() { console.log('mouseover'); },
    mouseout:    function() { console.log('mouseout'); },
    click:       function() { console.log('click'); }
});

And when those listeners need to be removed:

Ext.destroy(this.btnListeners);

or

this.btnListeners.destroy();

mun ( item, ename, [fn], [scope] )

Shorthand for removeManagedListener. Removes listeners that were added by the mon method.

Parameters

item :  Ext.util.Observable / Ext.dom.Element

The item from which to remove a listener/listeners.

ename :  Object / String

The event name, or an object containing event name properties.

fn :  Function (optional)

If the ename parameter was an event name, this is the handler function.

scope :  Object (optional)

If the ename parameter was an event name, this is the scope (this reference) in which the handler function is executed.

nextNode ( [selector] ) : Ext.Component

Returns the next node in the Component tree in tree traversal order.

Note that this is not limited to siblings, and if invoked upon a node with no matching siblings, will walk the tree to attempt to find a match. Contrast with nextSibling.

Parameters

selector :  String (optional)

A Ext.ComponentQuery selector to filter the following nodes.

Returns

:Ext.Component

The next node (or the next node which matches the selector). Returns null if there is no matching node.

nextSibling ( [selector] ) : Ext.Component

Returns the next sibling of this Component.

Optionally selects the next sibling which matches the passed Ext.ComponentQuery selector.

May also be referred to as next()

Note that this is limited to siblings, and if no siblings of the item match, null is returned. Contrast with nextNode

Parameters

selector :  String (optional)

A Ext.ComponentQuery selector to filter the following items.

Returns

:Ext.Component

The next sibling (or the next sibling which matches the selector). Returns null if there is no matching sibling.

on ( eventName, [fn], [scope], [options], [order] ) : Object

The on method is shorthand for addListener.

Appends an event handler to this object. For example:

myGridPanel.on("itemclick", this.onItemClick, this);

The method also allows for a single argument to be passed which is a config object containing properties which specify multiple events. For example:

myGridPanel.on({
    cellclick: this.onCellClick,
    select: this.onSelect,
    viewready: this.onViewReady,
    scope: this // Important. Ensure "this" is correct during handler execution
});

One can also specify options for each event handler separately:

myGridPanel.on({
    cellclick: {fn: this.onCellClick, scope: this, single: true},
    viewready: {fn: panel.onViewReady, scope: panel}
});

Names of methods in a specified scope may also be used:

myGridPanel.on({
    cellclick: {fn: 'onCellClick', scope: this, single: true},
    viewready: {fn: 'onViewReady', scope: panel}
});

Parameters

eventName :  String / Object

The name of the event to listen for. May also be an object who's property names are event names.

fn :  Function / String (optional)

The method the event invokes or the name of the method within the specified scope. Will be called with arguments given to Ext.util.Observable#fireEvent plus the options parameter described below.

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.

Note: The options object will also be passed as the last argument to every event handler.

This object may contain any of the following properties:

scope :  Object

The scope (`this` reference) in which the handler function is executed. **If omitted, defaults to the object which fired the event.**

delay :  Number

The number of milliseconds to delay the invocation of the handler after the event fires.

single :  Boolean

True to add a handler to handle just the next firing of the event, and then remove itself.

buffer :  Number

Causes the handler to be scheduled to run in an Ext.util.DelayedTask delayed by the specified number of milliseconds. If the event fires again within that time, the original handler is _not_ invoked, but the new handler is scheduled in its place.

onFrame :  Number

Causes the handler to be scheduled to run at the next animation frame event. If the event fires again before that time, the handler is not rescheduled - the handler will only be called once when the next animation frame is fired, with the last set of arguments passed.

target :  Ext.util.Observable

Only call the handler if the event was fired on the target Observable, _not_ if the event was bubbled up from a child Observable.

element :  String

**This option is only valid for listeners bound to Ext.Component.** The name of a Component property which references an Ext.dom.Element to add a listener to. This option is useful during Component construction to add DOM event listeners to elements of Ext.Component which will exist only after the Component is rendered. For example, to add a click listener to a Panel's body: var panel = new Ext.panel.Panel({ title: 'The title', listeners: { click: this.handlePanelClick, element: 'body' } }); In order to remove listeners attached using the element, you'll need to reference the element itself as seen below. panel.body.un(...)

delegate :  String (optional)

A simple selector to filter the event target or look for a descendant of the target. The "delegate" option is only available on Ext.dom.Element instances (or when attaching a listener to a Ext.dom.Element via a Component using the element option). See the *delegate* example below.

capture :  Boolean (optional)

When set to `true`, the listener is fired in the capture phase of the event propagation sequence, instead of the default bubble phase. The capture option is only available on Ext.dom.Element instances (or when attaching a listener to a Ext.dom.Element via a Component using the element option).

stopPropagation :  Boolean (optional)

**This option is only valid for listeners bound to Ext.dom.Element.** `true` to call stopPropagation on the event object before firing the handler.

preventDefault :  Boolean (optional)

**This option is only valid for listeners bound to Ext.dom.Element.** `true` to call preventDefault on the event object before firing the handler.

stopEvent :  Boolean (optional)

**This option is only valid for listeners bound to Ext.dom.Element.** `true` to call stopEvent on the event object before firing the handler.

args :  Array (optional)

Optional arguments to pass to the handler function. Any additional arguments passed to fireEvent will be appended to these arguments.

destroyable :  Boolean (optional)

When specified as `true`, the function returns a `destroyable` object. An object which implements the `destroy` method which removes all listeners added in this call. This syntax can be a helpful shortcut to using un; particularly when removing multiple listeners. *NOTE* - not compatible when using the _element_ option. See un for the proper syntax for removing listeners added using the _element_ config.

Defaults to:

priority :  Number (optional)

An optional numeric priority that determines the order in which event handlers are run. Event handlers with no priority will be run as if they had a priority of 0. Handlers with a higher priority will be prioritized to run sooner than those with a lower priority. Negative numbers can be used to set a priority lower than the default. Internally, the framework uses a range of 1000 or greater, and -1000 or lesser for handlers that are intended to run before or after all others, so it is recommended to stay within the range of -999 to 999 when setting the priority of event handlers in application-level code. A priority must be an integer to be valid. Fractional values are reserved for internal framework use.

order :  String (optional)

A legacy option that is provided for backward compatibility. It is recommended to use the `priority` option instead. Available options are: - `'before'`: equal to a priority of `100` - `'current'`: equal to a priority of `0` or default priority - `'after'`: equal to a priority of `-100`

Defaults to:

order :  String (optional)

A shortcut for the order event option. Provided for backward compatibility. Please use the priority event option instead.

Combining Options

Using the options argument, it is possible to combine different types of listeners:

A delayed, one-time listener.

myPanel.on('hide', this.handleClick, this, {
    single: true,
    delay: 100
});

Attaching multiple handlers in 1 call

The method also allows for a single argument to be passed which is a config object containing properties which specify multiple handlers and handler configs.

grid.on({
    itemclick: 'onItemClick',
    itemcontextmenu: grid.onItemContextmenu,
    destroy: {
        fn: function () {
            // function called within the 'altCmp' scope instead of grid
        },
        scope: altCmp // unique scope for the destroy handler
    },
    scope: grid       // default scope - provided for example clarity
});

Delegate

This is a configuration option that you can pass along when registering a handler for an event to assist with event delegation. By setting this configuration option to a simple selector, the target element will be filtered to look for a descendant of the target. For example:

var panel = Ext.create({
    xtype: 'panel',
    renderTo: document.body,
    title: 'Delegate Handler Example',
    frame: true,
    height: 220,
    width: 220,
    html: '<h1 class="myTitle">BODY TITLE</h1>Body content'
});

// The click handler will only be called when the click occurs on the
// delegate: h1.myTitle ("h1" tag with class "myTitle")
panel.on({
    click: function (e) {
        console.log(e.getTarget().innerHTML);
    },
    element: 'body',
    delegate: 'h1.myTitle'
 });

Defaults to: 'current'

Returns

:Object

Only when the destroyable option is specified.

A Destroyable object. An object which implements the destroy method which removes all listeners added in this call. For example:

this.btnListeners =  = myButton.on({
    destroyable: true
    mouseover:   function() { console.log('mouseover'); },
    mouseout:    function() { console.log('mouseout'); },
    click:       function() { console.log('click'); }
});

And when those listeners need to be removed:

Ext.destroy(this.btnListeners);

or

this.btnListeners.destroy();

onAfter ( eventName, fn, [scope], [options] )

Appends an after-event handler.

Same as addListener with order set to 'after'.

Parameters

eventName :  String / String[] / Object

The name of the event to listen for.

fn :  Function / String

The method the event invokes.

scope :  Object (optional)

The scope for fn.

options :  Object (optional)

An object containing handler configuration.

onBefore ( eventName, fn, [scope], [options] )

Appends a before-event handler. Returning false from the handler will stop the event.

Same as addListener with order set to 'before'.

Parameters

eventName :  String / String[] / Object

The name of the event to listen for.

fn :  Function / String

The method the event invokes.

scope :  Object (optional)

The scope for fn.

options :  Object (optional)

An object containing handler configuration.

onFocusEnter ( e )
template tpl protected pro

Called when focus enters this Component's hierarchy

Parameters

e :  Object

event :  Ext.event.Event

The underlying DOM event.

target :  HTMLElement

The element gaining focus.

relatedTarget :  HTMLElement

The element losing focus.

toComponent :  Ext.Component

The Component gaining focus.

fromComponent :  Ext.Component

The Component losing focus.

backwards :  Boolean

`true` if the `fromComponent` is *after* the `toComponent* in the DOM tree, indicating that the user used `SHIFT+TAB` to move focus. Note that setting tabIndex values to affect tabbing order can cause this to be incorrect. Setting tabIndex values is not advised.

This is a template method. a hook into the functionality of this class. Feel free to override it in child classes.

onFocusLeave ( e )
template tpl protected pro

Called when focus exits from this Component's hierarchy

Parameters

e :  Ext.event.Event

event :  Ext.event.Event

The underlying DOM event.

target :  HTMLElement

The element gaining focus.

relatedTarget :  HTMLElement

The element losing focus.

toComponent :  Ext.Component

The Component gaining focus.

fromComponent :  Ext.Component

The Component losing focus.

This is a template method. a hook into the functionality of this class. Feel free to override it in child classes.

onResize ( width, height, oldWidth, oldHeight )
template tpl protected pro

Optional template method. If implemented, this is called asynchronously after a browser layout caused by a component resize. This may be triggered for any or several of the following reasons:

Parameters

width :  String / Number

The new width.

height :  String / Number

The new height.

oldWidth :  String / Number

The previous width.

oldHeight :  String / Number

The previous height.

This is a template method. a hook into the functionality of this class. Feel free to override it in child classes.

onScrollEnd ( x, y )
template tpl protected pro

Invoked when a scroll operation is completed via this component's scroller.

Parameters

x :  Number

The current x position

y :  Number

The current y position

This is a template method. a hook into the functionality of this class. Feel free to override it in child classes.

onScrollMove ( x, y )
template tpl protected pro

Invoked when this component is scrolled via its scroller.

Parameters

x :  Number

The current x position

y :  Number

The current y position

This is a template method. a hook into the functionality of this class. Feel free to override it in child classes.

onScrollStart ( x, y )
template tpl protected pro

Invoked when a scroll is initiated on this component via its scroller.

Parameters

x :  Number

The current x position

y :  Number

The current y position

This is a template method. a hook into the functionality of this class. Feel free to override it in child classes.

previousNode ( [selector] ) : Ext.Component

Returns the previous node in the Component tree in tree traversal order.

Note that this is not limited to siblings, and if invoked upon a node with no matching siblings, will walk the tree in reverse order to attempt to find a match. Contrast with previousSibling.

Parameters

selector :  String (optional)

A Ext.ComponentQuery selector to filter the preceding nodes.

Returns

:Ext.Component

The previous node (or the previous node which matches the selector). Returns null if there is no matching node.

previousSibling ( [selector] ) : Ext.Component

Returns the previous sibling of this Component.

Optionally selects the previous sibling which matches the passed Ext.ComponentQuery selector.

May also be referred to as prev()

Note that this is limited to siblings, and if no siblings of the item match, null is returned. Contrast with previousNode

Parameters

selector :  String (optional)

A Ext.ComponentQuery selector to filter the preceding items.

Returns

:Ext.Component

The previous sibling (or the previous sibling which matches the selector). Returns null if there is no matching sibling.

relayEvents ( origin, events, [prefix] ) : Object

Relays selected events from the specified Observable as if the events were fired by this.

For example if you are extending Grid, you might decide to forward some events from store. So you can do this inside your initComponent:

this.relayEvents(this.getStore(), ['load']);

The grid instance will then have an observable 'load' event which will be passed the parameters of the store's load event and any function fired with the grid's load event would have access to the grid using the this keyword (unless the event is handled by a controller's control/listen event listener in which case 'this' will be the controller rather than the grid).

Parameters

origin :  Object

The Observable whose events this object is to relay.

events :  String[] / Object

Array of event names to relay or an Object with key/value pairs translating to ActualEventName/NewEventName respectively. For example: this.relayEvents(this, {add:'push', remove:'pop'});

Would now redispatch the add event of this as a push event and the remove event as a pop event.

prefix :  String (optional)

A common prefix to prepend to the event names. For example:

this.relayEvents(this.getStore(), ['load', 'clear'], 'store');

Now the grid will forward 'load' and 'clear' events of store as 'storeload' and 'storeclear'.

Returns

:Object

A Destroyable object. An object which implements the destroy method which, when destroyed, removes all relayers. For example:

this.storeRelayers = this.relayEvents(this.getStore(), ['load', 'clear'], 'store');

Can be undone by calling

Ext.destroy(this.storeRelayers);

or this.store.relayers.destroy();

removeCls ( cls, [prefix], [suffix] )

Removes the given CSS class(es) from this Component's rendered element.

Parameters

cls :  String / String[]

The class(es) to remove.

prefix :  String (optional)

Optional prefix to prepend before each class.

Defaults to: ""

suffix :  String (optional)

Optional suffix to append to each class.

Defaults to: ""

removeListener ( eventName, fn, [scope] )

Removes an event handler.

Parameters

eventName :  String

The type of event the handler was associated with.

fn :  Function

The handler to remove. This must be a reference to the function passed into the addListener call.

scope :  Object (optional)

The scope originally specified for the handler. It must be the same as the scope argument specified in the original call to Ext.util.Observable#addListener or the listener will not be removed.

Convenience Syntax

You can use the addListener destroyable: true config option in place of calling un(). For example:

var listeners = cmp.on({
    scope: cmp,
    afterrender: cmp.onAfterrender,
    beforehide: cmp.onBeforeHide,
    destroyable: true
});

// Remove listeners
listeners.destroy();
// or
cmp.un(
    scope: cmp,
    afterrender: cmp.onAfterrender,
    beforehide: cmp.onBeforeHide
);

Exception - DOM event handlers using the element config option

You must go directly through the element to detach an event handler attached using the addListener element option.

panel.on({
    element: 'body',
    click: 'onBodyCLick'
});

panel.body.un({
    click: 'onBodyCLick'
});

removeManagedListener ( item, ename, [fn], [scope] )

Removes listeners that were added by the mon method.

Parameters

item :  Ext.util.Observable / Ext.dom.Element

The item from which to remove a listener/listeners.

ename :  Object / String

The event name, or an object containing event name properties.

fn :  Function (optional)

If the ename parameter was an event name, this is the handler function.

scope :  Object (optional)

If the ename parameter was an event name, this is the scope (this reference) in which the handler function is executed.

removePlugin ( plugin, [destroy] ) : Ext.plugin.Abstract

Removes and (optionally) destroys a plugin.

Note: Not all plugins are designed to be removable. Consult the documentation for the specific plugin in question to be sure.

Available since: 6.2.0

Parameters

plugin :  String / Ext.plugin.Abstract

The plugin or its id to remove.

destroy :  Boolean (optional)

Pass true to not call destroy() on the plugin.

Returns

:Ext.plugin.Abstract

plugin instance or null if not found.

removeTrigger ( trigger, [destroy] ) : Ext.field.trigger.Trigger

Removes a trigger from this text field.

Parameters

trigger :  String / Ext.field.trigger.Trigger

The name of the trigger to remove, or a trigger reference.

destroy :  Boolean (optional)

False to prevent the trigger from being destroyed on removal. Only use this option if you want to reuse the trigger instance.

Defaults to: true

Returns

:Ext.field.trigger.Trigger

The trigger that was removed

replaceCls ( oldCls, newCls, [prefix], [suffix] )

Replaces specified classes with the newly specified classes. It uses the addCls and removeCls methods, so if the class(es) you are removing don't exist, it will still add the new classes.

Parameters

oldCls :  String / String[]

The class(es) to remove.

newCls :  String / String[]

The class(es) to add.

prefix :  String (optional)

Optional prefix to prepend before each class.

Defaults to: ""

suffix :  String (optional)

Optional suffix to append to each class.

Defaults to: ""

reset Ext.field.Field

Resets the current field value back to the original value on this field when it was created.

// Update the value
field.setValue('new value');

// Now you can reset it back to the `first value`
field.reset();

Returns

:Ext.field.Field

this

resetOriginalValue

Resets the field's originalValue property so it matches the current value. This is called by FormPanel. setValues if the form's trackResetOnLoad property is set to true.

resetPositioned

Resets top, right, bottom and left configurations to null, which will cause this component to stop being 'positioned' and to take its place in its owning container's layout.

resolveListenerScope ( [defaultScope] ) : Object
protected pro

Gets the default scope for firing late bound events (string names with no scope attached) at runtime.

Parameters

defaultScope :  Object (optional)

The default scope to return if none is found.

Defaults to: this

Returns

:Object

The default event scope

resolveSatelliteListenerScope ( satellite, [defaultScope] ) : Object
protected pro

Returns the default listener scope for a "satellite" of this component. Used for resolving scope for observable objects that are not part of the normal Container/Component hierarchy (for example, plugins)

Available since: 5.1.1

Parameters

satellite :  Ext.mixin.Observable

defaultScope :  Object (optional)

Returns

:Object

The listener scope

resumeEvent ( eventName )

Resumes firing of the named event(s).

After calling this method to resume events, the events will fire when requested to fire.

Note that if the suspendEvent method is called multiple times for a certain event, this converse method will have to be called the same number of times for it to resume firing.

Parameters

eventName :  String...

Multiple event names to resume.

resumeEvents ( [discardQueue] )

Resumes 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.

Parameters

discardQueue :  Boolean (optional)

true to prevent any previously queued events from firing while we were suspended. See suspendEvents.

select TextField
chainable ch

Attempts to forcefully select all the contents of the input field.

Returns

:TextField

this

setActiveError

Store the activeError message string, fire the errorchange event accordingly, and update the UI. If the error to be set is empty string, any validation UI is removed, otherwise the proper validation UI is displayed, based upon msgTarget.

setActiveErrors ( errors )

Set the active error message to an Array of error messages. The messages are formatted into a single message string using the activeErrorsTpl. Also see setActiveError which allows setting the entire error contents with a single string. You probably want to call markInvalid instead.

Parameters

errors :  String[]

The error messages

setConfig ( name, [value] ) : Ext.Base

Sets a single/multiple configuration options.

Parameters

name :  String / Object

The name of the property to set, or a set of key value pairs to set.

value :  Object (optional)

The value to set for the name parameter.

Returns

:Ext.Base

this

setPickerLocation ( [fromKeyboard] )
template tpl

Parameters

fromKeyboard :  Boolean (optional)

Passed as true if the keyboard was used to open the picker. This usually means that picker location should be set.

A function which may be implemented in subclasses which moves the focus to the value in the picker which matches this field's value.

For example, if you were writing a time picker, this method would be where you synced the picker's value with the field's value.

Defaults to: false

This is a template method. a hook into the functionality of this class. Feel free to override it in child classes.

setSize ( width, height )

Sets the size of the Component.

Parameters

width :  String / Number

The new width for the Component.

height :  String / Number

The new height for the Component.

show ( [animation] ) : Ext.Component
chainable ch

Shows this component optionally using an animation.

Parameters

animation :  Object / Boolean (optional)

You can specify an animation here or a bool to use the showAnimation config.

Returns

:Ext.Component

showAt ( x, [y], [animate] ) : Ext.Component

Displays component at specific xy position. A floating component (like a menu) is positioned relative to its ownerCt if any. Useful for popping up a context menu:

listeners: {
    itemcontextmenu: function(view, record, item, index, event, options) {
        Ext.create('Ext.menu.Menu', {
            width: 100,
            height: 100,
            margin: '0 0 10 0',
            items: [{
                text: 'regular item 1'
            },{
                text: 'regular item 2'
            },{
                text: 'regular item 3'
            }]
        }).showAt(event.getXY());
    }
}

Parameters

x :  Number / Number[] / Object

The new x position or array of [x,y], or an object {x:10, y:10}.

y :  Number (optional)

The new y position.

animate :  Boolean / Object (optional)

True to animate the Component into its new position. You may also pass an animation configuration.

Returns

:Ext.Component

this

showBy ( component, [alignment], [options] )

Shows this component by another component. If you specify no alignment, it will automatically position this component relative to the reference component.

For example, say we are aligning a Panel next to a Button, the alignment string would look like this:

[panel-vertical (t/b/c)][panel-horizontal (l/r/c)]-[button-vertical (t/b/c)][button-horizontal (l/r/c)]

where t = top, b = bottom, c = center, l = left, r = right.

Examples

  • tl-tr means top-left corner of the Panel to the top-right corner of the Button
  • tc-bc means top-center of the Panel to the bottom-center of the Button

    // show panel by button using the default positioning (auto fit) panel.showBy(button);

    // align the top left corner of panel with the top right corner of button (constrained to viewport) panel.showBy(button, "tl-tr?");

    // align the bottom right corner of panel with the center left edge of button (not constrained by viewport) panel.showBy(button, "br-cl");

Parameters

component :  Ext.Component

The target component to show this component by.

alignment :  String (optional)

The specific alignment.

options :  Object (optional)

An object containing options for the Ext.util.Region#alignTo method.

suspendEvent ( eventName )

Suspends firing of the named event(s).

After calling this method to suspend events, the events will no longer fire when requested to fire.

Note that if this is called multiple times for a certain event, the converse method resumeEvent will have to be called the same number of times for it to resume firing.

Parameters

eventName :  String...

Multiple event names to suspend.

suspendEvents ( queueSuspended )

Suspends the firing of all events. (see resumeEvents)

Parameters

queueSuspended :  Boolean

true to queue up suspended events to be fired after the resumeEvents call instead of discarding all suspended events.

toggleCls ( className, [state] )
chainable ch

Add or removes a class based on if the class is already added to the Component.

Parameters

className :  String

The class to toggle.

state :  Boolean (optional)

If specified as true, causes the class to be added. If specified as false, causes the class to be removed.

un ( eventName, fn, [scope] )

Shorthand for removeListener. Removes an event handler.

Parameters

eventName :  String

The type of event the handler was associated with.

fn :  Function

The handler to remove. This must be a reference to the function passed into the addListener call.

scope :  Object (optional)

The scope originally specified for the handler. It must be the same as the scope argument specified in the original call to Ext.util.Observable#addListener or the listener will not be removed.

Convenience Syntax

You can use the addListener destroyable: true config option in place of calling un(). For example:

var listeners = cmp.on({
    scope: cmp,
    afterrender: cmp.onAfterrender,
    beforehide: cmp.onBeforeHide,
    destroyable: true
});

// Remove listeners
listeners.destroy();
// or
cmp.un(
    scope: cmp,
    afterrender: cmp.onAfterrender,
    beforehide: cmp.onBeforeHide
);

Exception - DOM event handlers using the element config option

You must go directly through the element to detach an event handler attached using the addListener element option.

panel.on({
    element: 'body',
    click: 'onBodyCLick'
});

panel.body.un({
    click: 'onBodyCLick'
});

unAfter ( eventName, fn, [scope], [options] )

Removes a before-event handler.

Same as removeListener with order set to 'after'.

Parameters

eventName :  String / String[] / Object

The name of the event the handler was associated with.

fn :  Function / String

The handler to remove.

scope :  Object (optional)

The scope originally specified for fn.

options :  Object (optional)

Extra options object.

unBefore ( eventName, fn, [scope], [options] )

Removes a before-event handler.

Same as removeListener with order set to 'before'.

Parameters

eventName :  String / String[] / Object

The name of the event the handler was associated with.

fn :  Function / String

The handler to remove.

scope :  Object (optional)

The scope originally specified for fn.

options :  Object (optional)

Extra options object.

up ( [selector], [limit] ) : Container

Walks up the ownership hierarchy looking for an ancestor Component which matches the passed simple selector.

Example:

var owningTabPanel = grid.up('tabpanel');

Parameters

selector :  String (optional)

The simple selector to test.

limit :  String / Number / Ext.Component (optional)

This may be a selector upon which to stop the upward scan, or a limit of the number of steps, or Component reference to stop on.

Returns

:Container

The matching ancestor Container (or undefined if no match was found).

updateHeight ( height )
protected pro

Parameters

height :  String / Number

updateWidth ( width )
protected pro

Parameters

width :  String / Number

validate

Validate the field and return it's validity state. To get the existing validity state without re-validating current value, use isValid.

Static Methods

addMembers ( members, [isStatic], [privacy] )
static sta

Add methods / properties to the prototype of this class.

Ext.define('My.awesome.Cat', {
    constructor: function() {
        ...
    }
});

 My.awesome.Cat.addMembers({
     meow: function() {
        alert('Meowww...');
     }
 });

 var kitty = new My.awesome.Cat();
 kitty.meow();

Parameters

members :  Object

The members to add to this class.

isStatic :  Boolean (optional)

Pass true if the members are static.

Defaults to: false

privacy :  Boolean (optional)

Pass true if the members are private. This only has meaning in debug mode and only for methods.

Defaults to: false

addStatics ( members ) : Ext.Base
static sta

Add / override static properties of this class.

Ext.define('My.cool.Class', {
    ...
});

My.cool.Class.addStatics({
    someProperty: 'someValue',      // My.cool.Class.someProperty = 'someValue'
    method1: function() { ... },    // My.cool.Class.method1 = function() { ... };
    method2: function() { ... }     // My.cool.Class.method2 = function() { ... };
});

Parameters

members :  Object

Returns

:Ext.Base

this

callParent
static sta protected pro

callSuper
static sta protected pro

create Object
static sta

Create a new instance of this Class.

Ext.define('My.cool.Class', {
    ...
});

My.cool.Class.create({
    someConfig: true
});

All parameters are passed to the constructor of the class.

Returns

:Object

the created instance.

createAlias ( alias, origin )
static sta

Create aliases for existing prototype methods. Example:

Ext.define('My.cool.Class', {
    method1: function() { ... },
    method2: function() { ... }
});

var test = new My.cool.Class();

My.cool.Class.createAlias({
    method3: 'method1',
    method4: 'method2'
});

test.method3(); // test.method1()

My.cool.Class.createAlias('method5', 'method3');

test.method5(); // test.method3() -> test.method1()

Parameters

alias :  String / Object

The new method name, or an object to set multiple aliases. See flexSetter

origin :  String / Object

The original method name

getName String
static sta

Get the current class' name in string format.

Ext.define('My.cool.Class', {
    constructor: function() {
        alert(this.self.getName()); // alerts 'My.cool.Class'
    }
});

My.cool.Class.getName(); // 'My.cool.Class'

Returns

:String

className

override ( members ) : Ext.Base
static sta

Override members of this class. Overridden methods can be invoked via Ext.Base#callParent.

Ext.define('My.Cat', {
    constructor: function() {
        alert("I'm a cat!");
    }
});

My.Cat.override({
    constructor: function() {
        alert("I'm going to be a cat!");

        this.callParent(arguments);

        alert("Meeeeoooowwww");
    }
});

var kitty = new My.Cat(); // alerts "I'm going to be a cat!"
                          // alerts "I'm a cat!"
                          // alerts "Meeeeoooowwww"

Direct use of this method should be rare. Use Ext.define instead:

Ext.define('My.CatOverride', {
    override: 'My.Cat',
    constructor: function() {
        alert("I'm going to be a cat!");

        this.callParent(arguments);

        alert("Meeeeoooowwww");
    }
});

The above accomplishes the same result but can be managed by the Ext.Loader which can properly order the override and its target class and the build process can determine whether the override is needed based on the required state of the target class (My.Cat).

Parameters

members :  Object

The properties to add to this class. This should be specified as an object literal containing one or more properties.

Returns

:Ext.Base

this class

events

action ( this, e, eOpts )
preventable prev

Fires whenever the return key or go is pressed. FormPanel listeners for this event, and submits itself whenever it fires. Also note that this event bubbles up to parent containers.

Parameters

this :  TextField

This field

e :  Mixed

The key event object

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

This action following this event is preventable. When any of the listeners returns false, the action is cancelled.

added ( this, container, index, eOpts )

Fires after a Component had been added to a Container.

Parameters

this :  Ext.Component

container :  Container

Parent Container

index :  Number

The index of the item within the Container.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

beforebottomchange ( sender, value, oldValue, eOpts ) : Boolean

This event fires when bottom changes.

Parameters

sender :  Ext.Component

The instance firing this event.

value :  Number / String

The current value of bottom.

oldValue :  Number / String

The previous value of bottom.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

Returns

:Boolean

Return false to cancel the change.

beforecenteredchange ( sender, value, oldValue, eOpts ) : Boolean

This event fires when centered changes.

Parameters

sender :  Ext.Component

The instance firing this event.

value :  Boolean

The current value of centered.

oldValue :  Boolean

The previous value of centered.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

Returns

:Boolean

Return false to cancel the change.

beforedisabledchange ( sender, value, oldValue, eOpts ) : Boolean

This event fires when disabled changes.

Parameters

sender :  Ext.Widget

The instance firing this event.

value :  Boolean

The current value of disabled.

oldValue :  Boolean

The previous value of disabled.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

Returns

:Boolean

Return false to cancel the change.

beforedockedchange ( sender, value, oldValue, eOpts ) : Boolean

This event fires when docked changes.

Parameters

sender :  Ext.Component

The instance firing this event.

value :  String

The current value of docked.

oldValue :  String

The previous value of docked.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

Returns

:Boolean

Return false to cancel the change.

beforeheightchange ( sender, value, oldValue, eOpts ) : Boolean

This event fires when height changes.

Parameters

sender :  Ext.Widget

The instance firing this event.

value :  Number / String

The current value of height.

oldValue :  Number / String

The previous value of height.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

Returns

:Boolean

Return false to cancel the change.

beforehiddenchange ( sender, value, oldValue, eOpts ) : Boolean

This event fires when hidden changes.

Parameters

sender :  Ext.Widget

The instance firing this event.

value :  Boolean

The current value of hidden.

oldValue :  Boolean

The previous value of hidden.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

Returns

:Boolean

Return false to cancel the change.

beforehide ( this, eOpts )

Fires before the Component is hidden. Hide may be vetoed by returning false from a handler.

Parameters

this :  Ext.Component

The component instance

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

beforeleftchange ( sender, value, oldValue, eOpts ) : Boolean

This event fires when left changes.

Parameters

sender :  Ext.Component

The instance firing this event.

value :  Number / String

The current value of left.

oldValue :  Number / String

The previous value of left.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

Returns

:Boolean

Return false to cancel the change.

beforemaxHeightchange ( sender, value, oldValue, eOpts ) : Boolean

This event fires when maxHeight changes.

Parameters

sender :  Ext.Component

The instance firing this event.

value :  Number / String

The current value of maxHeight.

oldValue :  Number / String

The previous value of maxHeight.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

Returns

:Boolean

Return false to cancel the change.

beforemaxWidthchange ( sender, value, oldValue, eOpts ) : Boolean

This event fires when maxWidth changes.

Parameters

sender :  Ext.Component

The instance firing this event.

value :  Number / String

The current value of maxWidth.

oldValue :  Number / String

The previous value of maxWidth.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

Returns

:Boolean

Return false to cancel the change.

beforeminHeightchange ( sender, value, oldValue, eOpts ) : Boolean

This event fires when minHeight changes.

Parameters

sender :  Ext.Component

The instance firing this event.

value :  Number / String

The current value of minHeight.

oldValue :  Number / String

The previous value of minHeight.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

Returns

:Boolean

Return false to cancel the change.

beforeminWidthchange ( sender, value, oldValue, eOpts ) : Boolean

This event fires when minWidth changes.

Parameters

sender :  Ext.Component

The instance firing this event.

value :  Number / String

The current value of minWidth.

oldValue :  Number / String

The previous value of minWidth.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

Returns

:Boolean

Return false to cancel the change.

beforerightchange ( sender, value, oldValue, eOpts ) : Boolean

This event fires when right changes.

Parameters

sender :  Ext.Component

The instance firing this event.

value :  Number / String

The current value of right.

oldValue :  Number / String

The previous value of right.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

Returns

:Boolean

Return false to cancel the change.

beforescrollablechange ( sender, value, oldValue, eOpts ) : Boolean

This event fires when scrollable changes.

Parameters

sender :  Ext.Component

The instance firing this event.

value :  Boolean / String / Object

The current value of scrollable.

oldValue :  Boolean / String / Object

The previous value of scrollable.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

Returns

:Boolean

Return false to cancel the change.

beforeshow ( this, eOpts )

Fires before the Component is shown. Show may be vetoed by returning false from a handler.

Parameters

this :  Ext.Component

The component instance

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

beforetopchange ( sender, value, oldValue, eOpts ) : Boolean

This event fires when top changes.

Parameters

sender :  Ext.Component

The instance firing this event.

value :  Number / String

The current value of top.

oldValue :  Number / String

The previous value of top.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

Returns

:Boolean

Return false to cancel the change.

beforewidthchange ( sender, value, oldValue, eOpts ) : Boolean

This event fires when width changes.

Parameters

sender :  Ext.Widget

The instance firing this event.

value :  Number / String

The current value of width.

oldValue :  Number / String

The previous value of width.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

Returns

:Boolean

Return false to cancel the change.

blur ( this, e, eOpts )

Fires when this field loses input focus

Parameters

this :  TextField

This field

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

bottomchange ( sender, value, oldValue, eOpts )

This event fires when bottom changes.

Parameters

sender :  Ext.Component

The instance firing this event.

value :  Number / String

The current value of bottom.

oldValue :  Number / String

The previous value of bottom.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

centeredchange ( sender, value, oldValue, eOpts )

This event fires when centered changes.

Parameters

sender :  Ext.Component

The instance firing this event.

value :  Boolean

The current value of centered.

oldValue :  Boolean

The previous value of centered.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

change ( this, newDate, oldDate, eOpts )

Fires when a date is selected

Parameters

newDate :  Date

The new date

oldDate :  Date

The old date

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

clearicontap ( this, input, e, eOpts )
preventable prev

Fires when the clear icon is tapped

Parameters

this :  TextField

This field

input :  Ext.field.Input

The field's input component.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

This action following this event is preventable. When any of the listeners returns false, the action is cancelled.

click ( e, eOpts )

Fires whenever the input is clicked.

Parameters

e :  Ext.event.Event

The event object.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

collapse ( field, eOpts )

Fires when the field's picker is collapsed.

Parameters

field :  Ext.form.field.Picker

This field instance

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

destroy

Fires when the component is destroyed

disabledchange ( sender, value, oldValue, eOpts )

This event fires when disabled changes.

Parameters

sender :  Ext.Widget

The instance firing this event.

value :  Boolean

The current value of disabled.

oldValue :  Boolean

The previous value of disabled.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

dockedchange ( sender, value, oldValue, eOpts )

This event fires when docked changes.

Parameters

sender :  Ext.Component

The instance firing this event.

value :  String

The current value of docked.

oldValue :  String

The previous value of docked.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

erased ( this, eOpts )

Fires when the component is no longer displayed in the DOM. Listening to this event will degrade performance not recommend for general use.

Parameters

this :  Ext.Component

The component instance

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

expand ( field, eOpts )

Fires when the field's picker is expanded.

Parameters

field :  Ext.form.field.Picker

This field instance

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

focus ( this, e, eOpts )

Fires when this field receives input focus

Parameters

this :  TextField

This field

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

focusenter ( this, event, eOpts )

Fires when focus enters this Component's hierarchy.

Parameters

this :  Ext.Component

event :  Ext.event.Event

The focusenter event.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

focusleave ( this, event, eOpts )

Fires when focus leaves this Component's hierarchy.

Parameters

this :  Ext.Component

event :  Ext.event.Event

The focusleave event.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

fullscreen ( this, eOpts )

Fires whenever a Component with the fullscreen config is instantiated

Parameters

this :  Ext.Component

The component instance

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

heightchange ( sender, value, oldValue, eOpts )

This event fires when height changes.

Parameters

sender :  Ext.Widget

The instance firing this event.

value :  Number / String

The current value of height.

oldValue :  Number / String

The previous value of height.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

hiddenchange ( sender, value, oldValue, eOpts )

This event fires when hidden changes.

Parameters

sender :  Ext.Widget

The instance firing this event.

value :  Boolean

The current value of hidden.

oldValue :  Boolean

The previous value of hidden.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

hide ( this, eOpts )

Fires whenever the Component is hidden

Parameters

this :  Ext.Component

The component instance

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

initialize ( this, eOpts )

Fires when the component has been initialized

Parameters

this :  Ext.Component

The component instance

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

keyup ( this, e, eOpts )
preventable prev

Fires when a key is released on the input element

Parameters

this :  TextField

This field

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

This action following this event is preventable. When any of the listeners returns false, the action is cancelled.

leftchange ( sender, value, oldValue, eOpts )

This event fires when left changes.

Parameters

sender :  Ext.Component

The instance firing this event.

value :  Number / String

The current value of left.

oldValue :  Number / String

The previous value of left.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

maxHeightchange ( sender, value, oldValue, eOpts )

This event fires when maxHeight changes.

Parameters

sender :  Ext.Component

The instance firing this event.

value :  Number / String

The current value of maxHeight.

oldValue :  Number / String

The previous value of maxHeight.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

maxWidthchange ( sender, value, oldValue, eOpts )

This event fires when maxWidth changes.

Parameters

sender :  Ext.Component

The instance firing this event.

value :  Number / String

The current value of maxWidth.

oldValue :  Number / String

The previous value of maxWidth.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

minHeightchange ( sender, value, oldValue, eOpts )

This event fires when minHeight changes.

Parameters

sender :  Ext.Component

The instance firing this event.

value :  Number / String

The current value of minHeight.

oldValue :  Number / String

The previous value of minHeight.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

minWidthchange ( sender, value, oldValue, eOpts )

This event fires when minWidth changes.

Parameters

sender :  Ext.Component

The instance firing this event.

value :  Number / String

The current value of minWidth.

oldValue :  Number / String

The previous value of minWidth.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

mousedown ( this, e, eOpts )

Fires when this field receives a mousedown

Parameters

this :  TextField

This field

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

moved ( this, container, toIndex, fromIndex, eOpts )

Fires when a component si moved within its Container.

Parameters

this :  Ext.Component

container :  Container

Container which holds the component

toIndex :  Number

The new index of the item.

fromIndex :  Number

The old index of the item.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

painted ( element, eOpts )

Fires whenever this Element actually becomes visible (painted) on the screen. This is useful when you need to perform 'read' operations on the DOM element, i.e: calculating natural sizes and positioning.

Note: This event is not available to be used with event delegation. Instead painted only fires if you explicitly add at least one listener to it, for performance reasons.

Parameters

element :  Ext.dom.Element

The component's outer element (this.element)

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

paste ( this, e, eOpts )

Fires when this field is pasted.

Parameters

this :  TextField

This field

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

positionedchange ( this, positioned, eOpts )

Fires whenever there is a change in the positioned status of a component

Parameters

this :  Ext.Component

The component instance

positioned :  Boolean

The component's new positioned state. This becomes true is a component is positioned using the cfg-top, cfg-right, cfg-bottom or cfg-left configs.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

removed ( this, container, index, eOpts )

Fires when a component is removed from a Container

Parameters

this :  Ext.Component

container :  Container

Container which holds the component

index :  Number

The index of the item that was removed.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

resize ( component, width, height, oldWidth, oldHeight, eOpts )

Fires asynchronously after a browser layout caused by a component resize. This may be triggered for any or several of the following reasons:

Parameters

component :  Ext.Component

This Component.

width :  String / Number

The new width.

height :  String / Number

The new height.

oldWidth :  String / Number

The previous width.

oldHeight :  String / Number

The previous height.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

rightchange ( sender, value, oldValue, eOpts )

This event fires when right changes.

Parameters

sender :  Ext.Component

The instance firing this event.

value :  Number / String

The current value of right.

oldValue :  Number / String

The previous value of right.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

scrollablechange ( sender, value, oldValue, eOpts )

This event fires when scrollable changes.

Parameters

sender :  Ext.Component

The instance firing this event.

value :  Boolean / String / Object

The current value of scrollable.

oldValue :  Boolean / String / Object

The previous value of scrollable.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

show ( this, eOpts )

Fires whenever the Component is shown

Parameters

this :  Ext.Component

The component instance

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

topchange ( sender, value, oldValue, eOpts )

This event fires when top changes.

Parameters

sender :  Ext.Component

The instance firing this event.

value :  Number / String

The current value of top.

oldValue :  Number / String

The previous value of top.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

updatedata ( this, newData, eOpts )

Fires whenever the data of the component is updated

Parameters

this :  Ext.Component

The component instance

newData :  Object

The new data

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

widthchange ( sender, value, oldValue, eOpts )

This event fires when width changes.

Parameters

sender :  Ext.Widget

The instance firing this event.

value :  Number / String

The current value of width.

oldValue :  Number / String

The previous value of width.

eOpts : Object

The options object passed to Ext.util.Observable.addListener.

theme variables

$field-background-color : color

Field background-color

Defaults to:

null

$field-disabled-background-color : color

Field background-color when disabled

Defaults to:

null

$field-disabled-label-background-color : color

Field label background-color when disabled

Defaults to:

null

$field-disabled-label-color : color

Field label text color when disabled

Defaults to:

null

$field-disabled-opacity : Number

Opacity of form fields when disabled

Defaults to:

.3

$field-error-icon-side : String

Field error icon when {#errorTarget} is 'side'

Defaults to:

$fa-var-exclamation-circle FontAwesome

$field-error-icon-side-color : color

Field error icon color when {#errorTarget} is 'side'

Defaults to:

$alert-color

$field-error-icon-side-font-size : Number

Field error icon font-size when {#errorTarget} is 'side'

Defaults to:

null

$field-error-icon-side-font-size-big : Number

Field error icon font-size when {#errorTarget} is 'side' in the big sizing scheme

Defaults to:

null

$field-error-icon-side-margin : Number / list

Field error icon margin when {#errorTarget} is 'side'

Defaults to:

0 5px

$field-error-icon-side-margin-big : Number / list

Field error icon margin when {#errorTarget} is 'side' in the big sizing scheme

Defaults to:

0 8px

$field-error-icon-side-size : Number

Field error icon size when {#errorTarget} is 'side'

Defaults to:

16px

$field-error-icon-side-size-big : Number

Field error icon size when {#errorTarget} is 'side' in the big sizing scheme

Defaults to:

30px

$field-error-icon-under : String

Field error icon when {#errorTarget} is 'under'

Defaults to:

$fa-var-exclamation-circle FontAwesome

$field-error-icon-under-color : color

Field error icon color when {#errorTarget} is 'under'

Defaults to:

$alert-color

$field-error-icon-under-font-size : Number

Field error icon font-size when {#errorTarget} is 'under'

Defaults to:

null

$field-error-icon-under-font-size-big : Number

Field error icon font-size when {#errorTarget} is 'under' in the big sizing scheme

Defaults to:

null

$field-error-icon-under-margin : Number / list

Field error icon margin when {#errorTarget} is 'under'

Defaults to:

0 5px 0 0

$field-error-icon-under-margin-big : Number / list

Field error icon margin when {#errorTarget} is 'under' in the big sizing scheme

Defaults to:

0 8px 0 0

$field-error-icon-under-size : Number

Field error icon size when {#errorTarget} is 'under'

Defaults to:

16px

$field-error-icon-under-size-big : Number

Field error icon size when {#errorTarget} is 'under' in the big sizing scheme

Defaults to:

30px

$field-error-message-color : color

Field error message color

Defaults to:

$alert-color

$field-error-message-font-family : String

Field error message font-family

Defaults to:

$font-family

$field-error-message-font-size : Number

Field error message font-size

Defaults to:

1rem

$field-error-message-font-size-big : Number

Field error message font-size in the big sizing scheme

Defaults to:

null

$field-error-message-font-weight : String / Number

Field error message font-weight

Defaults to:

$font-weight

$field-error-message-line-height : Number

Field error message line-height

Defaults to:

16px

$field-error-message-line-height-big : Number

Field error message line-height in the big sizing scheme

Defaults to:

24px

$field-error-under-margin : Number / list

Field error element margin when {#errorTarget} is 'under'

Defaults to:

2px 0

$field-error-under-margin-big : Number / list

Field error element margin when {#errorTarget} is 'under' in the big sizing scheme

Defaults to:

3px

$field-focused-background-color : color

Field background-color when focused

Defaults to:

null

$field-focused-label-background-color : color

Field label background-color when focused

Defaults to:

null

$field-focused-label-color : color

Field label text color when focused

Defaults to:

null

$field-invalid-background-color : color

Field background-color when invalid

Defaults to:

null

$field-invalid-label-background-color : color

Field label background-color when invalid

Defaults to:

null

$field-invalid-label-color : color

Field label text color when invalid

Defaults to:

null

$field-label-background-color : color

Field label background-color

Defaults to:

null

$field-label-color : color

Field label text color

Defaults to:

$color

$field-label-font-family : String

Field label font-family

Defaults to:

$font-family

$field-label-font-size : Number

Field label font-size

Defaults to:

$font-size

$field-label-font-size-big : Number

Field label font-size in the big sizing scheme

Defaults to:

$font-size-big

$field-label-font-weight : String / Number

Field label font-weight

Defaults to:

$font-weight-normal

$field-label-line-height : Number

Field label line-height

Defaults to:

17px

$field-label-line-height-big : Number

Field label line-height in the big sizing scheme

Defaults to:

20px

$field-label-min-width : Number

Field label min-width

Defaults to:

null

$field-label-min-width-big : Number

Field label min-width in the big sizing scheme

Defaults to:

null

$field-label-padding : Number / list

Field label padding

Defaults to:

4px 6px 3px 0

$field-label-padding-big : Number / list

Field label padding in the big sizing scheme

Defaults to:

6px 6px 6px 0

$field-label-width : Number

Field label width

Defaults to:

100px

$field-label-width-big : Number

Field label width in the big sizing scheme

Defaults to:

120px

$field-required-indicator-font-family : String

Field required indicator font-family

Defaults to:

null

$field-required-indicator-font-size : Number

Field required indicator font-size

Defaults to:

null

$field-required-indicator-font-weight : String / Number

Field required indicator font-weight

Defaults to:

null

$field-required-indicator-line-height : Number

Field required indicator line-height

Defaults to:

null

$field-required-indicator-margin : Number

Field required indicator margin

Defaults to:

-3px null null 4px

$field-required-indicator-margin-big : Number

Field required indicator margin in the big sizing scheme

Defaults to:

null

$field-vertical-spacing : Number

Vertical space in between form fields

Defaults to:

8px

$field-vertical-spacing-big : Number

Vertical space in between form fields in the big sizing scheme

Defaults to:

8px

$textfield-alt-ui : map

Parameters for the "alt" textfield UI. Set to null to eliminate the UI from the CSS output.

$textfield-body-width : Number

Text Field body width

Defaults to:

170px

$textfield-body-width-big : Number

Text Field body width in the big sizing scheme

Defaults to:

200px

$textfield-celleditor-ui : map

Parameters for the "celleditor" textfield UI. Set to null to eliminate the UI from the CSS output.

$textfield-disabled-input-background-color : color

Text Field input background-color when disabled

Defaults to:

null

$textfield-disabled-input-border-color : String / list

Text Field input border color when disabled

Defaults to:

null

$textfield-disabled-input-color : color

Text Field input color when disabled

Defaults to:

null

$textfield-faded-ui : map

Parameters for the "faded" textfield UI. Set to null to eliminate the UI from the CSS output.

$textfield-focused-input-background-color : color

Text Field input background-color when focused

Defaults to:

null

$textfield-focused-input-border-color : String / list

Text Field input border color when focused

Defaults to:

mix(#fff, #157fcc, 15%)

$textfield-focused-input-border-style : String / list

Text Field input border style when focused

Defaults to:

null

$textfield-focused-input-color : color

Text Field input color when focused

Defaults to:

null

$textfield-focused-input-underline-color : color

Text field input underline color when focused

Defaults to:

null

$textfield-focused-input-underline-width : Number

Text field input underline width when focused

Defaults to:

null

$textfield-input-background-color : color

Text Field input background-color

Defaults to:

$background-color

$textfield-input-border-color : color / list

Text Field input border color

Defaults to:

$neutral-color

$textfield-input-border-style : String / list

Text Field input border style

Defaults to:

solid

$textfield-input-border-width : Number / list

Text Field input border width

Defaults to:

1px

$textfield-input-color : color

Text Field input color

Defaults to:

$color

$textfield-input-font-family : String

Text Field input font-family

Defaults to:

$font-family

$textfield-input-font-size : Number

Text Field input font-size

Defaults to:

$font-size

$textfield-input-font-size-big : Number

Text Field input font-size in the big sizing scheme

Defaults to:

$font-size-big

$textfield-input-font-weight : String / Number

Text Field input font-weight

Defaults to:

$font-weight-normal

$textfield-input-line-height : Number

Text Field input line-height

Defaults to:

17px

$textfield-input-line-height-big : Number

Text Field input line-height in the big sizing scheme

Defaults to:

20px

$textfield-input-padding : Number / list

Text Field input padding

Defaults to:

3px 6px 2px

$textfield-input-padding-big : Number / list

Text Field input padding in the big sizing scheme

Defaults to:

5px 6px

$textfield-input-underline-color : color

Text field input underline color

Defaults to:

null

$textfield-input-underline-width : Number

Text field input underline width

Defaults to:

null

$textfield-invalid-input-background-color : color

Text Field input background-color when invalid

Defaults to:

null

$textfield-invalid-input-border-color : String / list

Text Field input border color when invalid

Defaults to:

$alert-color

$textfield-invalid-input-border-style : String / list

Text Field input border style when invalid

Defaults to:

null

$textfield-invalid-input-color : color

Text Field input color when invalid

Defaults to:

null

$textfield-invalid-input-underline-color : color

Text field input underline color when invalid

Defaults to:

null

$textfield-invalid-input-underline-width : Number

Text field input underline width when invalid

Defaults to:

null

$textfield-placeholder-color : color

Text Field placeholder color

Defaults to:

$neutral-medium-dark-color

$textfield-solo-ui : map

Parameters for the "solo" textfield UI. Set to null to eliminate the UI from the CSS output.

theme mixins

field-ui ( ...list... )

Creates a visual theme for a Field

Parameters

$ui :  String

The name of the UI being created. Can not included spaces or special punctuation (used in CSS class names).

$xtype :  String (optional)

The Ext.Class#xtype to use in CSS selectors. For use by UI mixins of derived classes.

Defaults to: field

$background-color :  color

Field background-color

$focused-background-color :  color

Field background-color when focused

$invalid-background-color :  color

Field background-color when invalid

$disabled-background-color :  color

Field background-color when disabled

$label-color :  color

Field label text color

$focused-label-color :  color

Field label text color when focused

$invalid-label-color :  color

Field label text color when invalid

$disabled-label-color :  color

Field label text color when disabled

$label-background-color :  color

Field label background-color

$focused-label-background-color :  color

Field label background-color when focused

$invalid-label-background-color :  color

Field label background-color when invalid

$disabled-label-background-color :  color

Field label background-color when disabled

$label-padding :  Number / list

Field label padding

$label-padding-big :  Number / list

Field label padding in the big sizing scheme

$label-font-weight :  String / Number

Field label font-weight

$label-font-size :  Number

Field label font-size

$label-font-size-big :  Number

Field label font-size in the big sizing scheme

$label-line-height :  Number

Field label line-height

$label-line-height-big :  Number

Field label line-height in the big sizing scheme

$label-font-family :  String

Field label font-family

$label-width :  Number

Field label width

$label-width-big :  Number

Field label width in the big sizing scheme

$label-min-width :  Number

Field label min-width

$label-min-width-big :  Number

Field label min-width in the big sizing scheme

$disabled-opacity :  Number

Opacity of form fields when disabled

$required-indicator-font-weight :  String / Number

Field required indicator font-weight

$required-indicator-font-size :  Number

Field required indicator font-size

$required-indicator-line-height :  Number

Field required indicator line-height

$required-indicator-font-family :  String

Field required indicator font-family

$required-indicator-margin :  Number

Field required indicator margin

$required-indicator-margin-big :  Number

Field required indicator margin in the big sizing scheme

$error-icon-side :  String

Field error icon when {#errorTarget} is 'side'

$error-icon-side-color :  color

Field error icon color when {#errorTarget} is 'side'

$error-icon-side-size :  Number

Field error icon size when {#errorTarget} is 'side'

$error-icon-side-size-big :  Number

Field error icon size when {#errorTarget} is 'side' in the big sizing scheme

$error-icon-side-font-size :  Number

Field error icon font-size when {#errorTarget} is 'side'

$error-icon-side-font-size-big :  Number

Field error icon font-size when {#errorTarget} is 'side' in the big sizing scheme

$error-icon-side-margin :  Number / list

Field error icon margin when {#errorTarget} is 'side'

$error-icon-side-margin-big :  Number / list

Field error icon margin when {#errorTarget} is 'side' in the big sizing scheme

$error-icon-under :  String

Field error icon when {#errorTarget} is 'under'

$error-icon-under-color :  color

Field error icon color when {#errorTarget} is 'under'

$error-icon-under-size :  Number

Field error icon size when {#errorTarget} is 'under'

$error-icon-under-size-big :  Number

Field error icon size when {#errorTarget} is 'under' in the big sizing scheme

$error-icon-under-font-size :  Number

Field error icon font-size when {#errorTarget} is 'under'

$error-icon-under-font-size-big :  Number

Field error icon font-size when {#errorTarget} is 'under' in the big sizing scheme

$error-icon-under-margin :  Number / list

Field error icon margin when {#errorTarget} is 'under'

$error-icon-under-margin-big :  Number / list

Field error icon margin when {#errorTarget} is 'under' in the big sizing scheme

$error-under-margin :  Number / list

Field error element margin when {#errorTarget} is 'under'

$error-under-margin-big :  Number / list

Field error element margin when {#errorTarget} is 'under' in the big sizing scheme

$error-message-color :  color

Field error message color

$error-message-font-weight :  String / Number

Field error message font-weight

$error-message-font-size :  Number

Field error message font-size

$error-message-font-size-big :  Number

Field error message font-size in the big sizing scheme

$error-message-line-height :  Number

Field error message line-height

$error-message-line-height-big :  Number

Field error message line-height in the big sizing scheme

$error-message-font-family :  String

Field error message font-family

textfield-ui ( ...list... )

Creates a visual theme for a Text Field

Parameters

$ui :  String

The name of the UI being created. Can not included spaces or special punctuation (used in CSS class names).

$xtype :  String (optional)

The Ext.Class#xtype to use in CSS selectors. For use by UI mixins of derived classes.

Defaults to: textfield

$background-color :  color

Text Field input background color

$focused-background-color :  color

Focused Text Field background color

$invalid-background-color :  color

Invalid Text Field background color

$disabled-background-color :  color

Disabled Text Field background color

$label-color :  color

Text Field label color

$focused-label-color :  color

Focused Text Field label color

$invalid-label-color :  color

Invalid Text Field label color

$disabled-label-color :  color

Disabled Text Field label color

$label-background-color :  color

Text Field Label background color

$focused-label-background-color :  color

Focused Text Field Label background color

$invalid-label-background-color :  color

Invalid Text Field Label background color

$disabled-label-background-color :  color

Disabled Text Field Label background color

$label-padding :  Number

Text Field label padding

$label-padding-big :  Number

Text Field label padding in the big sizing scheme

$label-font-weight :  Number

Text Field label font weight

$label-font-size :  Number

Text Field label font size

$label-font-size-big :  Number

Text Field label font size in the big sizing scheme

$label-line-height :  Number

Text Field label line height

$label-line-height-big :  Number

Text Field label line height in the big sizing scheme

$label-font-family :  String

Text Field label font family

$disabled-opacity :  Number

Text Field disabled opacity

$required-indicator-font-weight :  Number

Required indicator font weight

$required-indicator-font-size :  Number

Required indicator font size

$required-indicator-line-height :  Number

Required indicator line height

$required-indicator-font-family :  String

Required indicator font family

$required-indicator-margin :  String

Required indicator margin

$required-indicator-margin-big :  String

Required indicator margin in the big sizing scheme

$input-color :  color

Text field input color

$focused-input-color :  color

Text Field input color when focused

$invalid-input-color :  color

Text Field input color when invalid

$disabled-input-color :  color

Text Field input color when disabled

$input-border-width :  Number / list

Text Field input border width

$input-border-style :  String / list

Text Field input border style

$focused-input-border-style :  String / list

Text Field input border style when focused

$invalid-input-border-style :  String / list

Text Field input border style when invalid

$input-border-color :  color / list

Text Field input border color

$focused-input-border-color :  String / list

Text Field input border color when focused

$invalid-input-border-color :  String / list

Text Field input border color when invalid

$disabled-input-border-color :  String / list

Text Field input border color when disabled

$input-underline-width :  Number

Text field input underline width

$focused-input-underline-width :  Number

Text field input underline width when focused

$invalid-input-underline-width :  Number

Text field input underline width when invalid

$input-underline-color :  color

Text field input underline color

$focused-input-underline-color :  color

Text field input underline color when focused

$invalid-input-underline-color :  color

Text field input underline color when invalid

$input-background-color :  color

Text Field input background-color

$focused-input-background-color :  color

Text Field input background-color when focused

$invalid-input-background-color :  color

Text Field input background-color when invalid

$disabled-input-background-color :  color

Text Field input background-color when disabled

$input-padding :  color

Text Field input padding

$input-padding-big :  color

Text Field input padding in the big sizing scheme

$input-font-weight :  String / Number

Text Field input font-weight

$input-font-size :  Number

Text Field input font-size

$input-font-size-big :  Number

Text Field input font-size in the big sizing scheme

$input-line-height :  Number

Text Field input line-height

$input-line-height-big :  Number

Text Field input line-height in the big sizing scheme

$input-font-family :  String

Text Field input font-family

$placeholder-color :  color

Text Field placeholder color

$border-radius :  Number

The border radius of the text field

$body-width :  Number

Text Field body width

$body-width-big :  Number

Text Field body width in the big sizing scheme

$animate-underline-duration :  Number

The duration, in seconds, for the focus underline animation

ExtReact 6.5.0