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.
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.
Public classes and class members are available for use by any other class or application code and may be relied upon as a stable and persistent within major product versions. Public classes and members may safely be extended via a subclass.
Protected class members are stable public
members intended to be used by the
owning class or its subclasses. Protected members may safely be extended via a subclass.
Private classes and class members are used internally by the framework and are not intended to be used by application developers. Private classes and members may change or be omitted from the framework at any time without notice and should not be relied upon in application logic.
static
label next to the
method name. *See Static below.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).
Let's look at each part of the member row:
lookupComponent
in this example)( item )
in this example)Ext.Component
in this case). This may be omitted for methods that do not
return anything other than undefined
or may display as multiple possible values
separated by a forward slash /
signifying that what is returned may depend on the
results of the method call (i.e. a method may return a Component if a get method calls is
successful or false
if unsuccessful which would be displayed as
Ext.Component/Boolean
).PROTECTED
in
this example - see the Flags section below)Ext.container.Container
in this example). The source
class will be displayed as a blue link if the member originates from the current class
and gray if it is inherited from an ancestor or mixed-in class.view source
in the example)item : Object
in the example).undefined
a "Returns" section
will note the type of class or object returned and a description (Ext.Component
in the
example)Available since 3.4.0
- not pictured in
the example) just after the member descriptionDefaults to: false
)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.
classInstance.method1().method2().etc();
false
is returned from
an event handler- 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
- 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
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.
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.
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.
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.
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:
Ext.button.Button
class has an alternate class name of Ext.Button
). Alternate class
names are commonly maintained for backward compatibility.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.
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:
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.
Release Date: September 8, 2016
Version Number: 6.2.0.981
EXTJS-22031 - RowEditor should support screen readers
EXTJS-22032 - Checkbox selection model should support screen reader announcement
EXTJS-22063 - Grid should support announcing dirty cells to screen readers
EXTJS-19839 - Configs should be nulled when an object is destroyed
EXTJS-21976 - Move plugin creation and management to core package
EXTJS-21391 - Pack, TreeMap, Partition/Sunburst, Tree/HorizontalTree, HeatMap components should support tooltips
EXTJS-21890 - Provide a component that integrates pivot matrix and D3 HeatMap
EXTJS-21848 - Should be able to set additional headers for Direct remoting requests
EXTJS-21850 - Direct proxy and Form actions should support prefix for method names
EXTJS-20517 - Ext.form.field.File should support accept attribute
EXTJS-20813 - Date field should be able to configure strict date parsing
EXTJS-21205 - HtmlEditor should have a buttonDefaults config to configure editor toolbar buttons
EXTJS-21479 - Spinner fields should fire a spinend event when value stops changing
EXTJS-20407 - Add ability to configure locked grid/tree splitter
EXTJS-8111 - Add ability to use flex for grid group child columns
EXTJS-18146 - Create circular progress component
EXTJS-21520 - split kitchen sink into classic & modern version
EXTJS-22409 - Tooltip and Files examples only for desktop?
EXTJS-22066 - DrillDown plugin should fire events when the view is shown/hidden
EXTJS-22077 - RangeEditor plugin should fire events when the view is shown/hidden
Total: 23
EXTJS-18857 - Different behavior of Tab and Shift+Tab in row editor
EXTJS-19718 - FocusableContainer does not handle focus moving to its encapsulating element.
EXTJS-21457 - activeChildTabIndex of collapsible panel header is not copied to reExpander
EXTJS-15982 - setUI doesn't change the UI of a button
EXTJS-18925 - Overflowing buttons in toolbar don't fire click handler
EXTJS-22184 - Segmented button has wrong value during change event
EXTJS-22273 - Button text is not visible, if text overflows button.
EXTJS-21197 - When move events, they disappear on WP 8.1 tablet
EXTJS-21577 - Month view dates outside current month range aren't calculated correctly in some scenarios
EXTJS-21646 - Button ">" doesn't work, can't change month/week/day to next one
EXTJS-21648 - Today button navigate to wrong month in month view standalone calendar app
EXTJS-21649 - Created event appear in previous day than it should in standalone calendar app
EXTJS-21679 - Calendar App: Unexpected Drag & Drop Behaviour
EXTJS-21712 - Layout for Edit or Create Calendar Event is broken
EXTJS-22042 - Some amount of modal mask should remain in the calendar app in modern view
EXTJS-22044 - Calendar example not showing logged in state in modern
EXTJS-22052 - Events in day view are missing after navigating between days
EXTJS-22055 - Create button in Calendar doesn't work
EXTJS-22073 - Imported google calendar events aren't shown correctly in Calendar
EXTJS-22107 - Calendar - Date is covered by buttons and it is not fully visible
EXTJS-22246 - KitchenSink / Calendar Panel: Not possible to fill up From/To field on Chrome and Edge.
EXTJS-22271 - Calendar application - not visible switch menu day, week, month
EXTJS-22312 - Imported google calendar events are not shown correctly in Month View
EXTJS-19890 - Time axis configured renderer not recognized
EXTJS-19891 - Gauge chart labels overlap ticks
EXTJS-20491 - Can't scroll legend docked to the top (Classic)
EXTJS-20684 - Should be able to update series.label.field config dynamically
EXTJS-20759 - Adding minorTickSteps to chart should automatically display
EXTJS-20887 - D3 chart Treemap styling issue on Edge/IE
EXTJS-21053 - sparklineline shows wrong values in tooltips when moving between different charts
EXTJS-21068 - Cannot zoom-in on tablets when pan/zoom interaction not initially allowed
EXTJS-21199 - [BarChart] Y axis labes missing
EXTJS-21606 - Changes to the Ext.chart.axis.Time.dateFormat config do not trigger axis layout
EXTJS-21681 - PieChart 3d with Donut fails to render if any data is 0, Null Undefined or False
EXTJS-21740 - Chart interactions might get messed if you accidentally hover tooltip
EXTJS-21747 - Basic barchart example wrong units in table
EXTJS-21937 - Stock chart - Cannot move with tittle Bar on Edge
EXTJS-22040 - Legend is not properly updated when series title changes.
EXTJS-22080 - setHighlightItem does not work for pie chart
EXTJS-22091 - Polar chart tooltip problem when store has single value of 100
EXTJS-12113 - Task Runner repeat doesn't work if args are also provided
EXTJS-19845 - Boot and Loader are extremely slow
EXTJS-21433 - Scroll snapping does not work in modern pickers when using Chrome
EXTJS-21502 - Resizing is broken if component is draggable with translated events
EXTJS-21533 - inheritableStatics in child can pollute parent values
EXTJS-21628 - Chart title covers refresh and reload buttons after screen rotation
EXTJS-21706 - Modal window is not centered in nested list example
EXTJS-21718 - Blank screen when loading Admin Dashboard on phones
EXTJS-21835 - Configs with cached: true can affect subsequent configs
EXTJS-21876 - Resizer grabbers appear wrong,
EXTJS-21907 - Broken layout in Widgets in admin dashboard
EXTJS-21991 - Typo in Ext.promise.Promise#log()
EXTJS-22079 - Unable to get plugin instance from the Pluggable mixin
EXTJS-22186 - Widgets throw an error when firing a bubbled event
EXTJS-22188 - Responsive updates do not always fire and can stop until page is reloaded
EXTJS-22201 - Exception in Ext.plugin.PullRefresh
EXTJS-22368 - Viewport autoBlurInput can throw exceptions in IE
EXTJS-22384 - Observable onFrame config does not work.
EXTJS-22411 - Aligned floaters throw error if their alignTo element is destroyed.
EXTJS-20902 - [D3] Text in Treemap is badly formated
EXTJS-21397 - D3 PanZoom interaction should properly support panning while zooming
EXTJS-22151 - Double tap provide zoom in iPads and Edge tablet
EXTJS-22412 - D3 Heatmap demo tooltip is blank
EXTJS-21209 - [Admin Dashboard] Can't scroll menu in modern toolkit (except phones)
EXTJS-21715 - [Admin Dashboard] in TODO List Checkboxes missing in Chrome and can't multichoose in FF
EXTJS-22134 - Content data of executive dashboard are missing
EXTJS-22256 - Admin DashBoard Charts not scrollable
EXTJS-22279 - [Admin Dash] Member type buttons are broken [Modern]
EXTJS-21359 - Store#onCollectionAdd is not called when a synchronous proxy is used with autoLoad
EXTJS-21638 - TreeStore changes on a child node cannot be rejected when its parent node is collapsed
EXTJS-21965 - TreeStore#findNode contains typo in optimized path
EXTJS-22187 - Keyless associations throw errors updating some fields
EXTJS-22189 - Store filter cannot be initially disabled
EXTJS-22430 - Linear data is treeified with wrong node depth values
EXTJS-21405 - Bound title empty when returning from nested item in NestedList
EXTJS-21588 - IndexBar in List is not visible
EXTJS-21860 - Store remove doesn't correctly remove dataview item
EXTJS-22378 - Selected dataview item is not highlighted - AdminDashboard
EXTJS-16255 - Stack overflow exception in Direct proxy with invalid Method configuration
EXTJS-18692 - Form submit using Ext Direct does not include params in modern toolkit
EXTJS-18756 - Form submit with Ext Direct submits the form.element not the generated <form>
on Modern
EXTJS-18901 - Form load over Ext Direct does not work with modern
EXTJS-19216 - Direct form submit ignores timeout
EXTJS-20463 - RemotingProvider should not throw exception while handling Response with no TID
EXTJS-21132 - Direct proxy unable to cancel requests correctly
EXTJS-21207 - Direct Providers do not abort pending transactions upon destruction
EXTJS-21505 - Direct proxy sends object instead of array on destroy
EXTJS-5762 - Ext Direct doesn't fire an exception event if responseText is empty.
EXTJS-18379 - Source Code for ExtJS 5.1.1 - Ext.tree.Panel is not actually of version 5.1.1
EXTJS-18673 - Improve hasMany documentation
EXTJS-20380 - Broken tag in TreeViewDragDrop plugin
EXTJS-21517 - Ext.dom.Element center method should be documented as chainable
EXTJS-21527 - Ext.dom.Element.getPositioning accidentally has an <h1>
in the description
EXTJS-21565 - Some links from 6.2.0 goes to documentation of other version
EXTJS-21597 - glyph config incorrectly states that xf005 is the home icon
EXTJS-21605 - Fix Ext.chart.axis.segmenter.Time.step config documentation
EXTJS-21652 - Some private functions are missing doc comments and are not shown
EXTJS-21656 - Ext.field.Input declares isFocused as a property but should be a config in Modern
EXTJS-22140 - Ext.field.Toggle change event is documented twice in Modern toolkit
EXTJS-22227 - Document scrollDocked as a public config option
EXTJS-22228 - Evented since version incorrectly states 5.5.0 instead of 6.0.0
EXTJS-22330 - Cannot finish Drag&Drop, drop doesn't work, Firefox
EXTJS-22362 - Can't move Element as proxy with revert: true more than one time in IE
EXTJS-15735 - Ext.event.publisher.Dom#dispatch appends the event target to the args list every time it is called.
EXTJS-18439 - Cannot use "element" option with declarative listeners in instance configs with widgets
EXTJS-20414 - Filter in Grid with Buffered Store doesn't work
EXTJS-20941 - Add model validation to KS Model Validation example
EXTJS-21198 - Reload and download buttons in Column Charts are not visible (Material Theme)
EXTJS-21355 - Icons in Kitchen Sink header do not scale when pinch/zoom used.
EXTJS-21370 - Message Box - Waiting Dialog show percentage counter
EXTJS-21489 - Rendered charts - Refresh button doesn't work
EXTJS-21617 - In MICRO state items in submenu are not selectable
EXTJS-21697 - [Resizable Examples] "Customizable Handles" example displays image at wrong position on page
EXTJS-21733 - Example landing page - Example links are off
EXTJS-21852 - Grid view is not refreshed after adding new child in session
EXTJS-21930 - Purchases by day - d3 heatmap example is not properly aligned
EXTJS-21938 - Simulated placeholder text not aligned in admin dashboard
EXTJS-21969 - Vector Icons - Cannot read property 'getXY'
EXTJS-21992 - modern Admin dashboard - Pages - mising background
EXTJS-22100 - Routing doesn't work in phone profile of Modern KS
EXTJS-22103 - Text of column disappears after clicking on it on Android
EXTJS-22106 - Some icons are clipped in Modern Kitchensink on IE11
EXTJS-22109 - Configurable Pivot Tree map - incorrect naming of config field groups
EXTJS-22112 - Error after clicking on DataView example
EXTJS-22121 - Console error during navigate in Kitchen sink
EXTJS-22131 - Checkboxs are not visible on Android tablets [Material Theme]
EXTJS-22168 - Tree Grid example does not render within a sized (w,h = 50% vs. fit) container
EXTJS-22199 - Gauge not working in IE8, getting "Object doesn't support this property or method"
EXTJS-22217 - Typo in example binding - KS>Locking grid with row expander
EXTJS-22274 - Navigation text is not displayed, if the text overflows the area.
EXTJS-22303 - Button text in buttons example in KS modern is unreadable
EXTJS-22313 - [DataView] inline DataView is not visible over whole page
EXTJS-22339 - Portal Demo - Minimize creates mask over all panels on iOS tablets
EXTJS-22381 - Button doesn't stretch to full width - AdminDashboard
EXTJS-22390 - Admin Dashboard / Chart is not visible on Chrome
EXTJS-22395 - Unable to load the Form Panel example on iOS
EXTJS-21667 - Export to excel xml should auto-detect cell type correctly depending on the value
EXTJS-22237 - Export to ... broken in Pivot Grids/Exporter Plugin example, modern KS
EXTJS-14693 - Scrolling a boundlist while resizing blanks out the list
EXTJS-14938 - Combobox AutoSelect doesn't work if the value is typed
EXTJS-15228 - Changing emptyText sets value of field to emptyText in browsers that do not support placeholder
EXTJS-18639 - Ext.field.Text moves cursor to the end of the field when not appending
EXTJS-18730 - Change event fires twice on file field
EXTJS-19219 - Tagfield should adhere to grow set to false
EXTJS-19657 - form.reset() doesn't reset model in Modern
EXTJS-20768 - Setting the raw value on a date field does not correctly parse the value as a date
EXTJS-20978 - Datefield is not validated on change
EXTJS-21035 - Custom invalidCls not set on Ext.form.field.Text elements
EXTJS-21041 - Keyboard navigation in Radio/Checkbox multi column group does not respect its layout
EXTJS-21103 - File field shows blinking caret in IE when button is focused
EXTJS-21364 - Grid editor configured as tagfield cannot use array to select multiple values
EXTJS-21472 - File field does not propagate tabIndex attribute to trigger
EXTJS-21487 - It is almost impossible to choose item in submenu - iPads
EXTJS-21528 - ComboBox with "forceSelection:true" and custom "displayTpl" clears selection on blur
EXTJS-21620 - Checkbutton couldn't be unchecked in Edge
EXTJS-21622 - Label as PlaceHolder disappear after putting text into textareafield
EXTJS-21682 - Clear icon does not clear value in NumberField
EXTJS-21920 - Grid with cell editing leaves blank cell after editing when the editor has selectOnFocus:true
EXTJS-22056 - Modern checkboxfield body aligment
EXTJS-22141 - Change event is not fired in Ext.field.Toggle
EXTJS-22266 - Form (Spinner) fields do not render proper in Modern (KS)
EXTJS-22295 - Form submit with null value throws exception in latest nightly
EXTJS-22357 - Spinner field does not look right next to text fields
EXTJS-16685 - Grouped grid does not respect store.insert(index)
EXTJS-17874 - RowExpander overrides injectCheckbox position when using checkbox selection model
EXTJS-19838 - Cellediting grid doesn't fire blur or focusleave with tab key
EXTJS-20212 - Superfluous rows when load bound store with summary feature
EXTJS-20222 - Tabbing + Cellediting in grouped grid fails at row end
EXTJS-20420 - Row expansion "sticks" when row is recycled upon scroll.
EXTJS-20456 - Big data: resizing columns doesn't work correctly
EXTJS-20535 - Reordering columns after store filter removes groups throws error
EXTJS-20538 - Row expander: Click to expand does not bring rowBody into full view
EXTJS-20599 - Can't choose items in Multi-Selector Grid's submenu
EXTJS-20605 - Grid column cannot bind properties
EXTJS-20627 - [modern - Big Data] dates are not editable
EXTJS-20628 - [modern - Big Data] rows are not editable in IE11
EXTJS-20633 - Store.removeAll on autoSync, MemoryProxy store does not remove the unfiltered records.
EXTJS-20731 - BufferedRenderer error when removing a row and using rowediting plugin
EXTJS-20761 - Same row remains expanded on sorting - Modern toolkit
EXTJS-21033 - Grids - Submenu menu disappear, if user want hide column in IE11
EXTJS-21044 - Cannot open grid header menu on Windows tablets
EXTJS-21083 - Layout run failed with syncRowHeight false
EXTJS-21089 - Scrolling of locking grid is not fluent when touch scrolling
EXTJS-21124 - Locking grid rows get out of sync on momentum scrolling on Android
EXTJS-21140 - Grid row is scrolled out of view when expanded - touch devices
EXTJS-21147 - Buffered store load causes scrolled grid to jump back to start
EXTJS-21308 - Cell editor remains active if view is refreshed after editing
EXTJS-21322 - GridViewDragDrop plugin does not inherit overClass config from dropZone definition
EXTJS-21499 - BufferedRenderer refresh of unconnected view at wrong position.
EXTJS-21532 - Ext.grid.property.Grid logs warning about stateId
EXTJS-21578 - Jump in scrolling when an expended widget row rejoins the rendered block.
EXTJS-21586 - Adding new row to grid with summary feature shows duplicate summary rows
EXTJS-21595 - Grid summary feature showing duplicate rows on a tree when expand last tree node
EXTJS-21600 - Grid with no data duplicates summary row when sorted
EXTJS-21644 - Cannot tap/longpress grid header on Android/Windows tablet devices
EXTJS-21651 - Grid column doesn't remove empty text class correctly when setting text
EXTJS-21666 - Invisible last row of Big Data table in Modern KS
EXTJS-21735 - Focus should not escape from row editor when Shift+Tabbing
EXTJS-21742 - Checkbox selection model - can't unchecked checkbox - FF
EXTJS-21812 - Grid filters fires extraneous change events when using key navigation inside field
EXTJS-21813 - Header width is changing and grid content changes differently or disappear.
EXTJS-21829 - [modern] Typo in grid/cell/Number.js near line 46
EXTJS-21838 - Use of IE mergeAttributes keeps previously set cell attributes
EXTJS-21851 - Failing to restore focus when removing records from multiselector grid
EXTJS-21856 - Widget column does not get updated when records added from inactive page
EXTJS-21868 - RowEditor horizontal scroll gets out of sync when columns resized
EXTJS-21900 - Spreadsheet selection model does not have selection count correctly when selectionchange is fired
EXTJS-21903 - Dragging a grid column with Ext.useShims enabled causes JS error
EXTJS-21912 - Exiting Action mode after removing grid rows may cause an exception
EXTJS-21918 - Grid view is empty if data is not present initially in modern grid (wrong row height)
EXTJS-21988 - Multi-selector grid submenu disappears after click into textfield, on tablets
EXTJS-21999 - colorfield in grid editor has wrong CSS applied
EXTJS-22027 - Grid row editing on firefox does not place cursor in correct position
EXTJS-22037 - Missing font icons in Column customization sheet - modern grid
EXTJS-22038 - Cannot sort column, android tablet
EXTJS-22039 - Clicking on column resizer hides column
EXTJS-22082 - PagingToolbar plugin fails when used with a remote store
EXTJS-22210 - RTL Locking grid - broken scrolling/column position
EXTJS-22226 - Auto-config of hideHeaders doesn't respect "text" binding
EXTJS-22302 - Grid has rendering issues (KS Modern)
EXTJS-22309 - Row header is not styled over the entire width of grid
EXTJS-22349 - Can't edit values in range editor plugin in IE
EXTJS-22383 - Incorrect page number after scrolling in Modern paging grid
EXTJS-22416 - List throws exceptions when configured with grouping and no store
EXTJS-20052 - Box layout improperly handles object form of split config
EXTJS-21911 - Carousel - Horizontal carousel is missing
EXTJS-19340 - When href is defined, menu item click event is not fired
EXTJS-21105 - Accordion layout with non-floating menu throws error on expand/collapse
EXTJS-21708 - Overflowing menu is closed when scrolled
EXTJS-12310 - Wrong thousands separator for Swedish locale
EXTJS-18951 - Difficult to navigate nested Ext.menu.Menus (need a delay before switching between menus)
EXTJS-20349 - Filefield produces infinite looping when selectOnFocus is enabled
EXTJS-20582 - Calling Ext.Msg. in the callback of Ext.Msg. causes TypeError
EXTJS-20596 - On Ext JS 6.1's main page is written Ext JS 6.0 (also in panel)
EXTJS-20703 - Ext.dataview.List causes the browser to hang when infinite with empty store
EXTJS-20738 - when filtering in Kitchen Sink, navigation Breadcrumb disappear
EXTJS-20916 - Ext.toast message goes from bottom to top and out of the page
EXTJS-21013 - Grouped list - Indexbar is not visible
EXTJS-21067 - Spreadsheet selection model, difficult to check cells via the UI
EXTJS-21091 - [TouchEvents]Swipe event is triggered with tap
EXTJS-21216 - When swipe carousel in Safari whole page is moving
EXTJS-21570 - Modern grid scroller does not have the correct vertical scroll size, resulting in jittery scrollbar
EXTJS-21741 - Broken layout in modern Menus example
EXTJS-21743 - Nested Loading example has broken layout when clicking on Explaing button
EXTJS-21744 - GeoCongress "Finding location" label is not centered
EXTJS-21821 - Dragging pivot configurator fields selects text
EXTJS-21823 - Error in Form with Grid example when changing value in radio buttons
EXTJS-21825 - IndexBar is not displayed
EXTJS-21927 - Collapsing grouped grid doesnt work on IE9-8
EXTJS-21931 - Cannot scroll in select field, phones
EXTJS-21953 - View controller event domain can't listen to widget events
EXTJS-21981 - Paging example is not loading data
EXTJS-21995 - Bad alignment of labels in adress book
EXTJS-21997 - Issue in navigation beetwen dataviews
EXTJS-22024 - window.open does not open phone dial pad on Android
EXTJS-22048 - Pivot D3 container should have an xtype
EXTJS-22051 - Window with constraints can't be moved in whole constrained area
EXTJS-22096 - Black border around tabs
EXTJS-22124 - Layout of Calendar box is broken on modern
EXTJS-22125 - Source is not displayed on tablets
EXTJS-22175 - Radio buttons are missing in Form Panel example
EXTJS-22176 - Basic Buttons example is missing labels on buttons
EXTJS-22178 - Checkboxes in Admin Dashbord are chopped
EXTJS-22192 - Date picker is broken on iOS8
EXTJS-22194 - Pivot treeMap configurator: can't perform any action when tree label is added
EXTJS-22215 - [Nested list] Ok button is not visible properly when user edits an item
EXTJS-22219 - Examples are not rendered properly [Modern]
EXTJS-22293 - Exception in Editing plugin with Checkbox selection model
EXTJS-22348 - Updating the image sprite causes the window to refresh
EXTJS-22380 - Toolbar size is incorrect in Modern AdminDashboard phone view
EXTJS-22406 - Cannot scroll in Vector icons example, phones, tablets
EXTJS-22413 - Chart is not rendering axes - when switched from different tab
EXTJS-21507 - Incorrect Panel state when removed from owner while collapsing with animation
EXTJS-21625 - View isn't resized correctly after screen rotation when source window is open iOS 7
EXTJS-22185 - Collapsed panels do not restore correctly using placeholder collapseMode
EXTJS-21214 - Drill down window doesn't show any data
EXTJS-21647 - Formatter is not shown correctly in field settings window
EXTJS-21663 - Expanding or collapsing group columns in a pivot grid results in extra refresh cycles
EXTJS-21986 - Row styling invisible numeral of total numbers.
EXTJS-22070 - The event beforemoveconfigfield should be fired when a configurator field is removed
EXTJS-22075 - DrillDown plugin doesn't work with remote store in modern toolkit
EXTJS-22130 - Drag & drop doesn't work properly in Edge (Configurator plugin and Two Trees examples)
EXTJS-22224 - Wrong row heigh in the pivotGrids/Configuration plugin on IE11/Edge
EXTJS-22244 - Paging toolbar does not work in modern drill down pivot
EXTJS-20526 - TabBar overflow menu is missing icon
EXTJS-21717 - Cannot TAB to tab panel tab bar
EXTJS-21872 - Tab focus border in triton theme does not display on IE and Edge
EXTJS-17080 - Neptune theme missing required images
EXTJS-20854 - Tooltip background is transparent - Modern theme
EXTJS-21618 - When button is marked as round and something else together - it is not round
EXTJS-21634 - UI of index page is broken on IE8
EXTJS-21691 - Ext.Progress renders differently in grid cells depending upon what alias was used to instantiate it (progress, progressbarwidget)
EXTJS-21707 - Vertical carousel doesn't show indicators in some themes
EXTJS-22171 - theme-cupertino-all-debug.css is not builded on ext-6.2.0.758
EXTJS-22264 - hovered and pressed datetrigger variables have no effect in modern triton
EXTJS-22341 - iOS theme has wrong font in IE
EXTJS-22345 - Configurator plugin - in configuration text is not visible in IE
EXTJS-22347 - Wrong align cell styling pivot grid header in iOS theme - IE
EXTJS-22355 - Label should be grey and placeholder bold in IE
EXTJS-22363 - Text has almost same color as background in iOS theme
EXTJS-21538 - Tooltips needs to be "alwaysOnTop"
EXTJS-21599 - showBy doesn't respect offsets
EXTJS-21968 - Tooltip manager throws error on drag start
EXTJS-22350 - ToolTips demo in Modern KS has issues
EXTJS-22405 - Delegated tooltips do not show on a target after showing on that target has been canceled
EXTJS-22424 - Targetless tooltip throws error if show() called with no align info.
EXTJS-21056 - Store configured with pageSize: 0 causes the PagingToolbar to display an infinite number of pages
EXTJS-21506 - Toolbar doesn't add spacer as a dependency
EXTJS-21512 - Drag stops when you drag toolbar button from right to left in IE10
EXTJS-21993 - Missing menu in modern toolkit - IOS theme
EXTJS-22067 - Material Toolbar padding
EXTJS-22243 - Toolbars/Toolbar Input: Text overflows the other element.
EXTJS-16474 - treeviewdragdrop#copy will not copy node's children
EXTJS-21213 - [iOS theme] When Expand/collapse Tree items or Grid rows (which should be shown) are sometimes missing
EXTJS-21273 - Locked TreeGrid throws errors on collapse
EXTJS-21908 - Can't navigate from Two Trees example by breadcrumb - error in console
EXTJS-12219 - Container-owned stateful window not restored to the correct page position between page loads
EXTJS-21604 - Modern: Ext.Msg.confirm box onAppUpdate() wrong position
EXTJS-21709 - Prompt overlay window is not editable in IE
EXTJS-21910 - Window can't be moved to the bottom of the page
EXTJS-22426 - Animated Window.hide "forgets" window position on reshow.
Total: 327
EXTJS-10451 - Tree component does not support ARIA expanded state
EXTJS-10467 - Menu overflow scrollers are not navigable using the keyboard
EXTJS-10475 - ToolTip is not accessible
EXTJS-10477 - HtmlEditor is not accessible
EXTJS-10480 - Color Picker is not accessible
EXTJS-10492 - DragDrop is not accessible
EXTJS-10494 - Grid grouping feature is not accessible
EXTJS-10495 - Locking grid is announced as two separate widgets by screen readers
EXTJS-10497 - Grid row expander is not accessible
EXTJS-10498 - Grid RowBody feature is not accessible
EXTJS-10499 - Grid CheckboxSelectionModel is not accessible
EXTJS-10503 - Grid headers cannot be resized using the keyboard
EXTJS-10504 - Grid Headers cannot be reordered using the keyboard
Total: 19
Release Date: June 14, 2016
Version Number: 6.2.0.589
Total: 64
false
Total: 329