Docs Help

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.

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

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

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.

Ext JS 6.2.1 - Classic Toolkit


top
Guide applies to: classic

Differences Between Ext JS 6.0.2 and Ext JS 6.2.0 Classic Toolkit

While we believe these guides are extremely helpful to developers planning to upgrade their applications, please be aware that the content is generated from documentation and may not always perfectly describe the actual code changes in the release. Incorrect changes may be indicated due to comment updates, formatting omissions, etc..

If you see anything suspicious or inaccurate in this report, please report the problem on the Forums or to Sencha Support.

Added

  • Ext.calendar.*
  • Ext.chart.legend.*
  • Ext.d3.*
  • Ext.drag.*
  • Ext.exporter.data.*
  • Ext.exporter.file.*
  • Ext.Glyph
  • Ext.google.data.*
  • Ext.google.ux.Client
  • Ext.grid.plugin.RowWidget
  • Ext.menu.Bar
  • Ext.mixin.Dirty
  • Ext.mixin.Keyboard
  • Ext.mixin.Pluggable
  • Ext.pivot.plugin.CellEditing
  • Ext.pivot.update.*
  • Ext.util.Color
  • Ext.ux.Gauge

Removed

  • Ext.scroll.DomScroller
  • Ext.scroll.Indicator
  • Ext.scroll.TouchScroller

Modified

Ext

  • Added Methods
    • fireEvent
  • Modified Methods
    • clone
      • Added cloneDom param

Ext.Action

  • Added Configs
    • glyph
  • Added Methods
    • setGlyph
  • Modified Configs
    • handler
      • type is String/Function (was Function)
    • scope
      • optional is true
  • Modified Methods
    • setHandler
      • Added handler param
      • Modified scope param
        • optional is true
      • Removed fn param

Ext.app.Application

  • Added Configs
    • quickTips

Ext.app.bind.Binding

  • Modified Methods
    • destroy
      • Modified fromParent param
        • access is public (was private)

Ext.Array

  • Modified Methods
    • findBy
      • Modified fn param
        • Modified index property
          • type is Number (was String)

Ext.Base

  • Added Properties
    • clearPropertiesOnDestroy

Ext.button.Button

  • Modified Configs
    • glyph
      • value is null

Ext.chart.AbstractChart

  • Modified Configs
    • legend
      • type is Ext.chart.legend.Legend/Ext.chart.legend.SpriteLegend/Boolean (was Ext.chart.Legend/Object)
  • Modified Methods
    • getLegendStore
      • Modified return
        • type is Ext.chart.legend.store.Store (was Ext.data.Store)

Ext.chart.axis.segmenter.Time

  • Modified Configs
    • step
      • Added unit property
      • Added step property

Ext.chart.axis.sprite.Axis

  • Added Configs
    • labelOffset

Ext.chart.axis.Time

  • Modified Configs
    • dateFormat
      • type is String (was String/Boolean)

Ext.chart.interactions.PanZoom

  • Added Configs
    • zoomOnPan

Ext.chart.series.Area

  • Added Configs
    • renderer

Ext.chart.series.Series

  • Modified Configs
    • store
      • access is public (was protected)
    • surface
      • type is Ext.draw.Surface (was Object)
  • Modified Methods
    • provideLegendInfo
      • Modified target param
        • Added mark property
        • Removed markColor property

Ext.chart.series.sprite.Bar

  • Modified Methods
    • renderClipped
      • Removed clip param

Ext.chart.theme.Base

  • Added Configs
    • legend
  • Modified Configs
    • baseColor
      • type is String/Ext.util.Color (was String/Ext.draw.Color)

Ext.Component

  • Added Configs
    • touchAction
  • Added Methods
    • lookupTpl
    • toggleCls
  • Modified Configs
    • renderTpl
      • value is '{%this.renderContent(out,values)%}' (was [ '', '
        ', '', '{%this.renderContent(out,values)%}', '
        ' ])

Ext.container.Container

  • Added Configs
    • actions
  • Added Methods
    • disable
    • enable
    • getAction

Ext.data.AbstractStore

  • Added Properties
    • doDestroy
  • Modified Methods
    • getFilters
      • Modified autoCreate param
        • access is public (was private)
    • getSorters
      • Modified autoCreate param
        • access is public (was private)

Ext.data.Batch

  • Modified Methods
    • start
      • Modified index param
        • access is public (was private)

Ext.data.field.Date

  • Added Configs
    • useStrict

Ext.data.Model

  • Added Configs
    • hasOne
  • Added Properties
    • crudState
    • crudStateWas

Ext.data.NodeInterface

  • Added Configs
    • glyph
  • Added Methods
    • onRegisterTreeNode
    • onUnregisterTreeNode
  • Modified Methods
    • copy
      • Added session param

Ext.data.TreeStore

  • Modified Methods
    • collect
      • Modified options param
        • Added allowNull property
        • Added filtered property
        • Added collapsed property
      • Removed includeOptions param

Ext.Date

  • Added Properties
    • DAYS_IN_WEEK
    • firstDayOfWeek
    • MAX_DAYS_IN_MONTH
    • MONTHS_IN_YEAR
    • weekendDays
  • Added Methods
    • isWeekend
    • localToUtc
    • utc
    • utcToLocal

Ext.direct.PollingProvider

  • Added Configs
    • timeout

Ext.direct.Provider

  • Added Configs
    • headers
  • Modified Events
    • exception
      • Added provider param
      • Added e param

Ext.dom.Element

  • Added Methods
    • getTouchAction
    • setTouchAction
  • Added Static-methods
    • fromPagePoint

Ext.dom.Underlay

  • Added Methods
    • beforeShow

Ext.draw.Container

  • Added Methods
    • handleResize

Ext.draw.gradient.Gradient

  • Modified Methods
    • generateGradient
      • Modified return
        • type is CanvasGradient/Ext.draw.engine.SvgContext.Gradient/Ext.util.Color.NONE (was CanvasGradient/Ext.draw.engine.SvgContext.Gradient/Ext.draw.Color.NONE)

Ext.draw.Point

  • Modified Methods
    • rotate
      • Modified center param
        • optional is true

Ext.draw.sprite.Instancing

  • Added Configs
    • instances
  • Added Methods
    • add

Ext.enums.Plugin

  • Added
    • pivotcellediting
    • boxreorderer
    • validationstatus
    • ux-animated-dataview
    • ux-slidingpager
    • mouseenter
    • rowwidget
    • ux-progressbarpager
    • exporterplugin
    • ux-cellfielddropzone

Ext.enums.Widget

  • Added
    • d3-partition
    • calendar-week
    • calendar-form-edit
    • d3-horizontal-tree
    • calendar-list
    • calendar-days
    • d3-sunburst
    • calendar-dayview
    • calendar-weeksview
    • calendar-event
    • d3-tree
    • calendar-month
    • d3-treemap
    • d3-canvas
    • calendar-weeksheader
    • calendar-weeks
    • calendar
    • d3-pack
    • d3-heatmap
    • calendar-daysheader
    • d3
    • gauge
    • menubar
    • sparkline
    • calendar-weekview
    • d3-svg
    • calendar-multiview
    • calendar-day
    • calendar-daysview
    • pivotconfigfield
    • calendar-calendar-picker
    • calendar-monthview
    • calendar-form-add
  • Removed
    • scrollindicator

Ext.event.Event

  • Added Properties
    • pointerType
  • Added Methods
    • claimGesture
    • startDrag

Ext.exporter.Base

  • Added Configs
    • binary
    • mimeType
  • Added Methods
    • getContent
  • Modified Configs
    • data
      • type is Ext.exporter.data.Table (was Object)
  • Modified Methods
    • saveAs
      • Added return

Ext.exporter.File

  • Added Methods
    • downloadBinaryAs
    • initializePopup
    • saveBinaryAs
  • Modified Methods
    • saveAs
      • Modified charset param
        • value is 'UTF-8' (was "UTF-8")
      • Added mimeType param
      • Added return

Ext.exporter.file.excel.Style

  • Modified Configs
    • alignment
      • optional is true
        • Added horizontal property
        • Added indent property
        • Added readingOrder property
        • Added rotate property
        • Added shrinkToFit property
        • Added vertical property
        • Added verticalText property
        • Added wrapText property
    • borders
      • value is undefined (was null)
        • Added position property
        • Added color property
        • Added lineStyle property
        • Added weight property
    • font
      • optional is true
        • Added bold property
        • Added color property
        • Added fontName property
        • Added italic property
        • Added outline property
        • Added shadow property
        • Added size property
        • Added strikeThrough property
        • Added underline property
        • Added verticalAlign property
        • Added charSet property
        • Added family property
    • format
      • value is undefined (was null)
    • interior
      • value is undefined (was null)
        • Added color property
        • Added pattern property
        • Added patternColor property
    • name
      • optional is true
    • parentId
      • optional is true
    • protection
      • optional is true
        • Added protected property
        • Added hideFormula property

Ext.form.CheckboxGroup

  • Added Properties
    • isCheckboxGroup

Ext.form.field.ComboBox

  • Added Configs
    • autoSelectLast

Ext.form.field.Date

  • Added Methods
    • checkChange
  • Modified Configs
    • formatText
      • value is 'Expected date format {0}.' (was 'Expected date format: {0}')

Ext.form.field.File

  • Added Configs
    • accept

Ext.form.field.Hidden

  • Added Methods
    • clearInvalid
    • markInvalid
    • setHeight
    • setPagePosition
    • setPosition
    • setSize
    • setWidth

Ext.form.field.HtmlEditor

  • Added Configs
    • buttonDefaults

Ext.form.field.Radio

  • Modified Properties
    • isRadio
      • readonly is true

Ext.form.field.Spinner

  • Added Events
    • spinend

Ext.form.field.Tag

  • Added Configs
    • ariaAvailableListLabel
    • ariaDeselectedText
    • ariaHelpText
    • ariaHelpTextEditable
    • ariaNoneSelectedText
    • ariaSelectedListLabel
    • ariaSelectedText
    • clearOnBackspace

Ext.form.FieldSet

  • Added Configs
    • checkbox
  • Added Methods
    • setCollapsed

Ext.form.Labelable

  • Added Configs
    • ariaErrorText
    • ariaHelp

Ext.form.RadioGroup

  • Added Configs
    • simpleValue
  • Added Properties
    • isRadioGroup
  • Modified Methods
    • setValue
      • Modified value param
        • type is Mixed (was Object)

Ext.form.trigger.Trigger

  • Added Configs
    • tooltip

Ext.fx.Anim

  • Modified Methods
    • end
      • Added suppressEvent param

Ext.grid.column.Action

  • Added Configs
    • glyph
    • itemAriaRole
    • itemTabIndex
  • Modified Configs
    • items
      • Added tabIndex property
      • Added ariaRole property

Ext.grid.column.Check

  • Added Configs
    • checkedTooltip
    • headerCheckbox
    • invert
    • tooltip
    • triggerEvent
  • Added Events
    • beforeheadercheckchange
    • headercheckchange

Ext.grid.column.Column

  • Added Configs
    • cellFocusable
    • dirtyText
    • enableTextSelection
    • exportStyle
  • Modified Configs
    • align
      • optional is true
    • sorter
      • type is Function/String/Object/Ext.util.Sorter (was String/Object/Ext.util.Sorter)

Ext.grid.feature.AbstractSummary

  • Modified Methods
    • toggleSummaryRow

Ext.grid.feature.Grouping

  • Modified Methods
    • collapse
      • Added options param

Ext.grid.filters.filter.Base

  • Added Configs
    • serializer

Ext.grid.header.Container

  • Modified Methods
    • getGridColumns
      • Added inResult param
      • Added hiddenAncestor param

Ext.grid.locking.Lockable

  • Modified Configs
    • split
      • type is Boolean/Object (was Boolean)

Ext.grid.NavigationModel

  • Added Events
    • cellactivate

Ext.grid.plugin.Exporter

  • Modified Methods
    • prepareData
      • access is public (was private)
        • Added config param
        • Removed return

Ext.grid.plugin.RowEditing

  • Added Configs
    • autoUpdate
    • formAriaLabel
    • formAriaLabelRowBase
    • removeUnmodified
  • Added Methods
    • resume
    • suspend
  • Modified Configs
    • autoCancel
      • optional is true

Ext.grid.plugin.RowExpander

  • Added Configs
    • scrollIntoViewOnExpand

Ext.grid.selection.SpreadsheetModel

  • Added Configs
    • checkColumnHeaderText

Ext.Img

  • Added Methods
    • getNaturalSize

Ext.menu.Item

  • Modified Configs
    • glyph
      • value is null

Ext.menu.Menu

  • Added Configs
    • mouseLeaveDelay
  • Added Properties
    • focusOnToFront
  • Added Vars
    • $menubar-item-arrow-glyph
    • $menubar-item-arrow-glyph-rtl
    • $menubar-item-arrow-height
    • $menubar-item-arrow-horizontal-spacing
    • $menubar-item-arrow-width

Ext.Microloader

  • Added Methods
    • setManifest

Ext.mixin.Observable

  • Modified Methods
    • addListener
      • Modified options param
        • Added capture property
    • on
      • Modified options param
        • Added capture property

Ext.Number

  • Added Methods
    • roundToNearest

Ext.panel.Table

  • Added Configs
    • record
    • rowViewModel
  • Added Methods
    • setAutoScroll
  • Added Events
    • beforeitemlongpress
    • beforerowexit
    • itemlongpress
  • Modified Methods
    • getColumns
      • Added return
  • Removed Events
    • beforeselectionextend
    • selectionextenderdrag

Ext.panel.Tool

  • Added Configs
    • glyph
    • iconCls
  • Added Methods
    • setIconCls
  • Added Vars
    • $tool-focus-outline-color
    • $tool-focus-outline-offset
    • $tool-focus-outline-style
    • $tool-focus-outline-width

Ext.pivot.axis.Base

  • Added Methods
    • collapseAll
    • expandAll

Ext.pivot.dimension.Item

  • Added Configs
    • exportStyle
    • formatter
    • labelRenderer
    • scope
  • Modified Configs
    • grouperFn
      • Added record param
      • Added return
    • values
      • type is Ext.util.MixedCollection (was Object[])

Ext.pivot.filter.Value

  • Removed Methods
    • isMatch

Ext.pivot.Grid

  • Added Configs
    • matrix
  • Added Events
    • pivotbeforereconfigure
    • pivotreconfigure
  • Modified Configs
    • store
      • hide is true
  • Modified Methods
    • reconfigurePivot
      • Modified config param
        • type is Ext.pivot.matrix.Base
  • Modified Events
    • pivotgroupcellclick
      • Modified params param
        • Added leftItem property
        • Added topItem property
    • pivotgroupcellcontextmenu
      • Modified params param
        • Added leftItem property
        • Added topItem property
    • pivotgroupcelldblclick
      • Modified params param
        • Added leftItem property
        • Added topItem property
    • pivotgroupclick
      • Modified params param
        • Added leftItem property
    • pivotgroupcollapse
      • Added matrix param
    • pivotgroupcontextmenu
      • Modified params param
        • Added leftItem property
    • pivotgroupdblclick
      • Modified params param
        • Added leftItem property
    • pivotgroupexpand
      • Added matrix param
    • pivotitemcellclick
      • Modified params param
        • Added leftItem property
        • Added topItem property
    • pivotitemcellcontextmenu
      • Modified params param
        • Added leftItem property
        • Added topItem property
    • pivotitemcelldblclick
      • Modified params param
        • Added leftItem property
        • Added topItem property
    • pivotitemclick
      • Modified params param
        • Added leftItem property
    • pivotitemcontextmenu
      • Modified params param
        • Added leftItem property
    • pivotitemdblclick
      • Modified params param
        • Added leftItem property

Ext.pivot.matrix.Base

  • Added Configs
    • cmp
    • compactViewColumnWidth
  • Added Methods
    • serialize
  • Added Events
    • beforereconfigure
    • reconfigure
  • Modified Configs
    • colGrandTotalsPosition
      • value is 'last' (was 'first')
    • colSubTotalsPosition
      • value is 'last' (was 'first')
    • rowGrandTotalsPosition
      • value is 'last' (was 'first')
  • Modified Methods
    • onBuildRecord
      • Added item param
  • Modified Events
    • recordbuilt
      • Added item param

Ext.pivot.plugin.Configurator

  • Added Methods
    • getConfigPanel
  • Added Events
    • applyconfigfieldsettings
    • beforeapplyconfigfieldsettings
    • beforeconfigchange
    • beforemoveconfigfield
    • beforeshowconfigfieldmenu
    • beforeshowconfigfieldsettings
    • showconfigfieldmenu
    • showconfigfieldsettings
  • Modified Configs
    • fields
      • type is Ext.pivot.plugin.configurator.Field[] (was Array)
  • Modified Events
    • configchange
      • Modified panel param
        • type is Ext.pivot.plugin.configurator.Panel (was Ext.pivot.plugin.Configurator)

Ext.pivot.plugin.configurator.Container

  • Added Methods
    • applyChanges

Ext.pivot.plugin.configurator.Panel

  • Added Configs
    • addToText
    • fieldSettingsText
    • moveBeginText
    • moveDownText
    • moveEndText
    • moveToText
    • moveUpText
    • removeFieldText
  • Added Methods
    • applyChanges
    • getAggregateContainer
    • getAggregateHeader
    • getAllFieldsContainer
    • getAllFieldsHeader
    • getLeftAxisContainer
    • getLeftAxisHeader
    • getTopAxisContainer
    • getTopAxisHeader
    • setAggregateContainerVisible
    • setAllFieldsContainerVisible
    • setLeftAxisContainerVisible
    • setTopAxisContainerVisible

Ext.pivot.plugin.Exporter

  • Modified Methods
    • prepareData
      • access is public (was private)
        • Added config param
        • Removed return

Ext.pivot.plugin.RangeEditor

  • Added Configs
    • defaultUpdater
    • scope
    • updaters
  • Removed Configs
    • textTypeIncrement
    • textTypeOverwrite
    • textTypePercentage
    • textTypeUniformly

Ext.plugin.Abstract

  • Added Configs
    • id
  • Added Methods
    • detachCmp
  • Modified Properties
    • isPlugin
      • readonly is true

Ext.ProgressBar

  • Added Vars
    • $progress-border-style
    • $progress-focus-border-color
    • $progress-focus-border-style
    • $progress-focus-border-width
    • $progress-text-back-color
    • $progress-text-front-color
  • Removed Vars
    • $progress-text-color-back
    • $progress-text-color-front

Ext.selection.CellModel

  • Modified Methods
    • setPosition

Ext.selection.CheckboxModel

  • Added Configs
    • headerAriaLabel
    • headerDeselectText
    • headerSelectText
    • headerText
    • rowDeselectText
    • rowSelectText

Ext.slider.Multi

  • Modified Configs
    • tipText
      • type is Function/String (was Function)

Ext.sparkline.Base

  • Modified Configs
    • highlightLighten
      • value is 0.1 (was 1.4)
  • Removed Configs
    • fillColor

Ext.sparkline.Line

  • Added Configs
    • fillColor

Ext.supports

  • Added Properties
    • Selectors2
    • ViewportUnits

Ext.tab.Bar

  • Added Vars
    • $tabbar-menu-overflow-glyph
    • $tabbar-menu-overflow-glyph-color

Ext.tip.QuickTip

  • Added Methods
    • beforeShow
  • Removed Methods
    • showAt

Ext.tip.Tip

  • Added Vars
    • $tip-anchor-height
    • $tip-anchor-width
  • Removed Configs
    • defaultAlign

Ext.tip.ToolTip

  • Added Configs
    • defaultAlign
    • showOnTap
    • targetOffset
  • Added Methods
    • afterShow
    • showBy
  • Modified Configs
    • mouseOffset
      • value is [15, 18] (was [15,18])
  • Removed Configs
    • anchorOffset

Ext.toolbar.Breadcrumb

  • Added Vars
    • $breadcrumb-arrow-glyph-rtl

Ext.tree.Panel

  • Added Configs
    • checkPropagation

Ext.util.Animate

  • Modified Methods
    • stopAnimation
      • Added suppressEvent param

Ext.util.ClickRepeater

  • Modified Methods
    • disable
      • Modified force param
        • access is public (was private)

Ext.util.Filter

  • Added Static-methods
    • isEqual
  • Modified Configs
    • serializer
      • access is public (was private)

Ext.util.FocusableContainer

  • Added Configs
    • allowFocusingDisabledChildren

Ext.util.Format

  • Added Properties
    • currencySpacer
  • Added Methods
    • lessThanElse
    • nbsp
    • sign
    • uri
    • uriCmp
    • word
  • Modified Methods
    • currency
      • Added currencySpacer param

Ext.util.Positionable

  • Added Methods
    • anchorTo
    • removeAnchor
  • Modified Methods
    • alignTo
      • Added anchorToEl param
      • Added alignment param
      • Added animate param
      • Removed element param
      • Removed position param
    • getRegion
      • Added contentBox param
    • move
      • Added animate param
    • setBox
      • Added animate param
    • setX
      • Added animate param
    • setXY
      • Added animate param
    • setY
      • Added animate param

Ext.util.Region

  • Added Methods
    • alignTo
    • exclude
    • getOffsetsTo
    • setPosition
  • Added Static-methods
    • getAlignInfo
  • Modified Methods
    • contains
      • Modified region param
        • type is Ext.util.Region/Ext.util.Point (was Ext.util.Region)

Ext.util.TaskRunner

  • Modified Methods
    • start
      • Modified task param
        • Added addCountToArgs property

Ext.view.AbstractView

  • Modified Events
    • itemadd
      • Added view param
    • itemupdate
      • Added view param

Ext.view.BoundList

  • Added Methods
    • setDisplayField

Ext.view.MultiSelector

  • Modified Vars
    • $multiselector-remove-font-size
      • value is 110% (was 100%)
    • $multiselector-remove-padding
      • value is top($grid-cell-inner-padding) 4px bottom($grid-cell-inner-padding) 4px (was $grid-cell-inner-padding)

Ext.view.Table

  • Added Events
    • beforerowexit
  • Modified Configs
    • enableTextSelection
      • optional is true

Ext.Widget

  • Added Configs
    • baseCls
    • border
    • cls
    • hidden
    • touchAction
    • ui
  • Added Properties
    • classCls
    • classClsRoot
  • Added Methods
    • isHidden
    • isVisible
    • lookupTpl
    • up

Ext.window.Toast

  • Added Configs
    • stickOnClick
  • Modified Configs
    • align
      • value is 't' (was "br")

Ext.window.Window

  • Added Configs
    • maskClickAction
  • Added Events
    • maskclick

Summary

  • 1,093 Classes
  • 2,989 Class Configs
  • 1,457 Class Properties
  • 59 Class Static Properties
  • 5,205 Class Methods
  • 181 Class Static Methods
  • 770 Class Events
  • 1,834 Class Vars

Ext JS 6.2.1 - Classic Toolkit