Release Notes for Ext JS 4.1.0 Beta 2a
Release Date: Feb 2, 2012
Version Number: 4.1.0 Beta 2a
Bugs Fixed
- Misc
-
EXTJSIV-5217 [4.1-20120123] Unable to use 'class' model fields
- Performance
-
EXTJSIV-5142 Anchor layout can cause performance issues if overflow occurs.
Summary
This beta 2 refresh introduces the Ext JS Page Analyzer which just didn't
quite make it in Beta 2. The Page Analyzer helps you understand the performance
characteristics of your application as it relates to Ext JS.
More information will follow regarding how to use the Page Analyzer, but
to get started today, you'll need to copy the "/examples/page-analyzer"
folder to the same server that you want to test (ensuring relative paths
to ext-all.js and the resources/css folder).
Open the page-analyzer.html file from that folder and then enter the URL
to the page you want to test and hit Load. Once the page loads, there is
a breakdown of the layouts executed as well as a simple performance
chart.
Look for more details to follow.
Release Notes for Ext JS 4.1.0 Beta 1
Release Date: December 22, 2011
Version Number: 4.1.0 Beta 1
Summary
We are very excited to get Ext JS 4.1.0 Beta 1 out to the community! Contained in this release are literally hundreds of bug fixes. As a first beta, there are several issues that we wanted to fix but decided that they were not critical enough to hold up the release any longer. These are documented in the known issues section of the ReadMe file in the distribution.
I wanted to take a moment to cover some of the internals that have changed. Some of these are new since 4.1 PR1, while other changes were introduced in 4.1 PR1 but have not been previously covered.
Layout
Failures
As result of the design for the layout engine in 4.1, it is possible for improper configuration (or a bug) to cause a layout run to fail to complete all of its calculations. When this occurs, the layout simply stops and the partial results that have been flushed to the DOM are all that is visible. In some cases, the layout may be 99% complete and the failure may go undetected or appear as a minor visual anomaly. In other cases, the layout may fail early and leave the UI in a clearly broken state (much like a JS error during layout would do in previous versions).
Diagnostics
The first step if you suspect you are seeing a layout failure is to enable the layout diagnostics. This is done by replacing the normal "ext-all.js" file with "ext-all-dev.js" and adding a couple additional scripts. Like so:
<script type="text/javascript" src="/extjs41/ext-all-dev.js"></script>
<script type="text/javascript" src="/extjs41/src/diag/layout/Context.js"></script>
<script type="text/javascript" src="/extjs41/src/diag/layout/ContextItem.js"></script>
Obviously, the path to Ext JS 4.1 will vary for your environment. With the above modifications, the diagnostic log can be viewed in Firebug's or Web Inspector's console. For IE, the logs are stored in memory and can be displayed by typing the following in the address bar once the page has loaded:
javascript:void(Ext.log.show())
This can be bookmarked to create a "bookmarklet". The log is limited to 750 lines which can be changed like so:
<script type="text/javascript" src="/extjs41/ext-all-dev.js"></script>
<script type="text/javascript">
Ext.log.max = 1500;
</script>
Model and idProperty
A common mis-configuration of Model is to not specify a proper "idProperty". This config property identifies the primary key of the model. This is easy to forget because "idProperty" defaults to "id". In 4.0, if there was no actual field in the Model by this name, you could encounter JS errors under some circumstances. In 4.1, this has been fixed by automatically defining the field by this name as a "string" property if there is no definition given.
This fix can, however, have unexpected side-effects. If you notice that your models have gained an "id" property this is most likely why. The solution is to configure your models with the correct "idProperty" value.
Fields and Their Layouts
In Ext JS 4.1 PR1 and then again in Beta 1, fields and field layouts have undergone several internal changes. Before I dive into them, however, I wanted to cover several new configuration properties related to field rendering. We have talked to several customers who needed to replace the rendering logic of fields (things like the "renderTpl", "fieldSubTpl" or "labelableRenderTpl") to accomplish some basic tweaks for their applications. While this works, the properties being overridden are internal and have changed several times since 4.0. Rather than continue this cycle, we wanted to provide a more stable way to augment fields.
In Beta 1, we have added several "micro" render templates to decorate fields. Typically these will be just strings of simple markup, but they can be full XTemplates. These decorators are as follows:
- *Fields*: inputAttrTpl
- *Labelable*: beforeLabelTpl, afterLabelTpl, beforeSubTpl, afterSubTpl, beforeLabelTextTpl, afterLabelTextTpl and labelAttrTpl
- *Checkbox*: beforeBoxLabelTpl, afterBoxLabelTpl, beforeBoxLabelTextTpl, afterBoxLabelTextTpl, boxLabelAttrTpl
- *HtmlEditor*: beforeTextAreaTpl, afterTextAreaTpl, beforeIFrameTpl, afterIFrameTpl, iframeAttrTpl
The use of "afterLabelTextTpl" is demonstrated in two of the examples: /examples/form/dynamic.html and /examples/form/contact-form.html to render a simple "required field" indicator. Their role in rendering is probably obvious from their name. For further details, refer to the docs or the source for the various fieldSubTpl's or labelableRenderTpl. If there are other decorators that might be helpful, just let us know.
In 4.0 and 4.1 PR1 field layouts were a rather complex balance of positioning, floating and measurement with subtle timing dependencies. In Beta 1, field layouts have been modified extensively to allow the browser to do much more of this work. To support IE6 this required the use of tables. There are still some calculations required, typically around height, but this approach eliminated lots of calculation and measurement that we previously had to perform on each field, the cost of which added up quickly.
Panel collapse
In 4.1 PR1, panel collapse was consolidated entirely into Panel. In 4.0, panel collapse was handled by Panel in many cases, but when contained in an Accordion or Border layout, these layouts would get very involved in the collapse/expand process. This change is unlikely to have impact on most applications, but could be important if the animation or other properties of collapsing have been customized.
LoadMasks
Masking is now only shared for modal windows. Non-floating and non-modal components will now create their own masks. While support for using Ext.LoadMask on elements has been deprecated in favor of the Ext.dom.Element mask() and unmask() methods, the ability to mask elements is still supported.
Mask management has been improved to handle re-sizing and hiding of the owning component.
Drag/Drop
In 4.1 Beta 1, the DragDropManager now consults the z-index to identify the top-most target of a drop. While this will fix many use cases of overlapping drop targets, it could also impact customized drag/drop processing.
Store refresh event
In 4.1 Beta 1, stores now fire a 'refresh' event if their content is changed in a significant way. This event has the semantics of the 'datachange' event from Ext JS 3.x and was added because 'datachange' in 4.0 fires for any change to the store (including adding one item).
Bugs Fixed
- Button
- [EXTJSIV-3558] Button title doesn't display properly when only a few characters are used in webkit-based browsers.
- [EXTJSIV-4184] Cascading child menu initial location is incorrect when near edge of viewport
- [EXTJSIV-4438] Button Group layout is broken (breaks Themes example)
- [EXTJSIV-4621] Combination Examples - Feed Viewer: Raises java script error when clicked on "Go to post" button
- [EXTJSIV-4623] Combination Examples - Theme Viewer:Raising js error when clicked on expand/ collapse button of Masked Panel for Theme Viewer
- [EXTJSIV-4677] Miscellaneous - Buttons : Not properly displaying buttons with text and icons
- Charts
- [EXTJSIV-2514] Rich tooltips do not render correctly in 4.02 examples, and don't clear correctly
- [EXTJSIV-3493] [4.0.4] Pie Chart should display blank canvas when store load empty dataset
- [EXTJSIV-3626] Radar Chart Line Connectors do not Appear With Default Theme
- [EXTJSIV-3630] groupBy throws an exception when changing from 'year,month,day' to 'year,month'
- [EXTJSIV-3765] [4.0.0] Ext.chart.series.Column: if you mouseOut the column, it will get a black border permanently.
- [EXTJSIV-3783] Area Chart - Farthest right tick not firing mouse events, showing tooltip, etc.
- [EXTJSIV-4040] [4.0.6] Gauge Chart Does not Support Tooltips or Mouse Listeners
- [EXTJSIV-4133] Portal Demo : "Graphs" In the "Stock portlet" are not displaying.
- [EXTJSIV-4252] Styling attributes defined in the highlight attribute of the Ext.chart.series.Series class are not considered.
- [EXTJSIV-4270] Stacked Bar Chart - Long digit number is displaying in the X-Axis when disabling all the legend items (except "Thriller")
- [EXTJSIV-4280] Charts - Rich Tips - Legend window is truncated on the right side when hovered on corner points in the chart.
- [EXTJSIV-4303] [4.0.7] [4.0.6] VML - broken text rotation
- [EXTJSIV-4337] Series, radar graph, tips not passing argument
- [EXTJSIV-4366] CPU load graphs are not displaying upon clicking on graph legends.
- [EXTJSIV-4429] [4.0.7] Pie chart series draws incorrectly
- [EXTJSIV-4459] If you try to render a chart in internet explorer 8 and you have animate=true, the markers will render, but lines themselves will never render
- [EXTJSIV-4502] [4.0.7] Pie chart with two data items, where the first is zero draws oddly
- [EXTJSIV-4505] Charts -> Filled Radar Charts : JS Error is displayed when clicked on any legend item.
- [EXTJSIV-4536] Chart with gradients turns black when displayed on more than one tab page.
- [EXTJSIV-4544] Charts : Rich Tips - No tool tips are displayed upon mouse hovering on graph nodes for the second time.
- [EXTJSIV-4589] Charts -> Line chart: Tapping on 'Reload Data' button multiple times shows blank chart
- [EXTJSIV-4603] When hiding then showing an item from Pie Chart Legend, the Chart dose not display the field label.
- [EXTJSIV-4604] Chart doesn't show labels, background, X axis, and Y axis in case data model is empty. Chart should be displayed empty.
- [EXTJSIV-4614] Charts -> Area chart: Chart not rendered completely and Reload Data button not functional
- [EXTJSIV-4622] Combination Examples - Web Desktop(Updated): Raising js error when mouse hovered on pie chart under System Status window
- [EXTJSIV-4671] Combination Examples - Portal demo -Only "djia" graph is displayed in the stock portlet.
- [EXTJSIV-4732] Charts - Area charts - Displaying Js error upon clicking on legend items In the chart
- Core
- [EXTJSIV-1755] Examples: Resizer custom resizable handles indicates drag without enabling it
- [EXTJSIV-1996] Container findX method consistency and missing functionality
- [EXTJSIV-2545] LoadMask's mask el is behind any Window
- [EXTJSIV-3379] ClassManager - define()'ing the same class multiple times will corrupt the namespace cache
- [EXTJSIV-3621] In Ext.core.Element.unclip method at core/src/dom/Element.style.js, variable "o" is used before assigned
- [EXTJSIV-3709] LoadMask doesn't entirely cover document.body
- [EXTJSIV-3721] Async Loading of Ext in an IFrame in IE: loading Ext in an iframe and the onReady call has no effect
- [EXTJSIV-3743] isUpload params behave differently to form
- [EXTJSIV-4156] itemadd does not fire when adding to an empty view
- [EXTJSIV-4186] XTemplate does'nt handle single quote properly in some case.
- [EXTJSIV-4482] Style names in style and bodyStyle must be proper CSS names
- [EXTJSIV-4540] Class system blows up with stack overflow on IE
- [EXTJSIV-4580] Memory leaks in the framework - (e.g. on the theme example)
- Data
- [EXTJSIV-2528] setRootNode doesn't allow model instance
- [EXTJSIV-3295] layout fit grid scrollbar does not scroll content
- [EXTJSIV-3304] Wrong height of the north and south panels in the border layout in a window
- [EXTJSIV-3315] Wrong file in gray theme - [4.0.2a]
- [EXTJSIV-3317] [4.0.2a] Remotefilter on buffered store and prefetch.
- [EXTJSIV-3318] Using checkbox selection model in the editable grid produces an error
- [EXTJSIV-3319] [extjs 4.x] How to use "showInInlineEditor" in ExtJS 4?
- [EXTJSIV-3320] EXTJS4 Tab iconCls height bug
- [EXTJSIV-3339] Grid plugin example not working [4.0.2a]
- [EXTJSIV-3340] Empty Column List when there are many columns
- [EXTJSIV-3344] Wrong example code in Object#merge()
- [EXTJSIV-3352] Resetting the editable combobox to non empty original value results in empty val
- [EXTJSIV-3546] [4.0.4] autoSync not working in TreeStore
- [EXTJSIV-3657] hasOne association isn't retrieved in getAssociatedData
- [EXTJSIV-3836] Field mapping on idProperty can cause incorrect internalId
- [EXTJSIV-4039] [4.0.6] Store.clearData() does not clear records from "removed" cache
- [EXTJSIV-4124] [4.0.6] Ext.data.TreeStore.load - Async Concurrency Problem
- [EXTJSIV-4125] getNode return wrong record after add new record
- [EXTJSIV-4188] Ext.data.proxy.Direct and Ext.form.Panel#api are not compatible with ExtJS 4 MVC
- [EXTJSIV-4211] Loading a store from controller using Ext.Direct: hen the paramOrder config is specified as a string, it's split into an array but it's not correctly passed up to its parent as an array
- [EXTJSIV-4227] Where did rejectChanges() go?
- [EXTJSIV-4238] Store's "write" and "datachanged" events do not fire after saving a record if the proxy is defined on the record
- [EXTJSIV-4240] After calling Model#save(), the model instance that is passed to the success callback is not the same instance that was saved.
- [EXTJSIV-4242] Newly created records in TreeStore can't be accessed using TreeStore#getNodeById()
- [EXTJSIV-4278] [Infor Global Solutions] Ext.data.proxy.JsonP.destroy does not pass arguments in callParent
- [EXTJSIV-4309] Ext.data.Store.loadRawData does not set total property
- [EXTJSIV-4333] [4.0] Bug in the Ext.data.Store constructor
- [EXTJSIV-4415] All samples are showing as "undefined" in the right column side-box of examples page
- [EXTJSIV-4433] Too much recursion in Ext.data.JsonP.abort
- [EXTJSIV-4446] Ext.ModelManager.getCount() returns always 0
- [EXTJSIV-4594] Ext 4.0.7 - Transform of combo does not use configured store
- [EXTJSIV-4597] Ext.data.Store.filter does not reset page number?
- Direct
- [EXTJSIV-3949] Direct : Displaying JS error while accessing Direct Tree loader example
- [EXTJSIV-4659] Direct - Direct Named Arguments-: Age field is not displaying in the Example
- Documentation
- [EXTJSIV-4219] [4.0.2] panel Tool types documented AND in CSS, but not in sprite.
- [EXTJSIV-4349] API docs on() method signature
- [EXTJSIV-4609] Absolute, Accordion, Border and Table layouts have the deprecated layoutConfig
- [EXTJSIV-4662] Documentation: Ext.Loader -> setConfig(): the example code contains a <script> tag instead of </script>:
- Draw
- [EXTJSIV-2097] viewbox: true ignores padding
- [EXTJSIV-3950] Drawing : Displaying blank page while accessing Rotate Text (New) example
- [EXTJSIV-4247] [Ext 4][B3] Ext.draw.Component - click event fires twice
- [EXTJSIV-4382] Browser Logo Example: Bug with drawing bounds. Images are clipped at top
- [EXTJSIV-4572] [4.0.7] Error when making Ext.Img resizable
- [EXTJSIV-4753] Drawing : Resizable Sencha Logo - Unable to resize the Sencha logo
- Events
- [EXTJSIV-3590] keypress event catch and handling at check tree
- [EXTJSIV-4132] CheckboxModel select event is not being triggered when you select from select all
- [EXTJSIV-4160] Mouse events on Sprites not usable
- [EXTJSIV-4264] Bug in relayEvents together with prefix
- [EXTJSIV-4275] Ext.view.View itemadd event fired too early
- [EXTJSIV-4466] [4.0.7] RadioGroup. Active value - error in the newValue param of the change event.
- [EXTJSIV-4478] Column headerclick Event Not Working
- [EXTJSIV-4627] [4.1.0PR] LoadMask listeners not removed when component is destroyed
- [EXTJSIV-4778] SplitButton not passing the event object on click
- Examples
- [EXTJSIV-1134] Grid: Right aligned headers need additional padding on the right
- [EXTJSIV-1135] Paging grid example - show preview is missing an icon
- [EXTJSIV-1151] MessegeBox - cannot press escape on confirm
- [EXTJSIV-1692] Hard Error: New desktop example. Click on About Ext JS in start menu in IE 8 and then close the video window
- [EXTJSIV-2011] Failed test: Verify correct Buttons / icons are displayed for Sell Stock, Buy Stock and Hold Stock and check tool tips
- [EXTJSIV-2029] Failed test: Verify Default view of Grouping with Remote Summary .
- [EXTJSIV-2163] Failed test: Verify the User is able see the Google Map
- [EXTJSIV-2254] Failed test: Verify page alignment while resizing the browser
- [EXTJSIV-2276] Collapsing a tree panel w/collapsed nodes throws JS error
- [EXTJSIV-2280] Failed test: Verify the Scroll bars in the note pad
- [EXTJSIV-2283] Failed test: Verify the memory usage pie chart when user click's on legends continuously
- [EXTJSIV-2286] Failed test: Verify the charts display when user resize the system status window
- [EXTJSIV-2287] Failed test: Verify the "About Ext Jst" item in statrt menu .
- [EXTJSIV-3756] Combination Examples : Feed Viewer - Throwing Error message upon adding a valid feed in a specific scenario.
- [EXTJSIV-3955] Displaying JS error while accessing Theme viewer and "Ext JS 3 & 4 on one page" examples
- [EXTJSIV-3959] Portal Demo - Displaying JS error when click on expand/collapse button
- [EXTJSIV-3961] Key Feed Viewer - Displaying JS error while accessing Key Feed Viewer example
- [EXTJSIV-4008] Quick Tips Example - No space between buttons under Easiest Tip & Callout Tip
- [EXTJSIV-4085] Combination Examples : Feed viewer - "Summary" button is not working in preview pane.
- [EXTJSIV-4136] Portal demo :Unable to close the portlets in a specific scenario.
- [EXTJSIV-4346] Center custom layout example is broken
- [EXTJSIV-4365] Kitchen Sink: a) Store defined with no model. b) GET http://localhost/ext-4.1-pr1/resources/themes/images/neptune/dd/drop-no.gif 404 (Not Found)
- [EXTJSIV-4367] Web Desktop sample: Displaying following error 84Error: Problem parsing d=""
- [EXTJSIV-4368] ExtJS 3 & 4 on one page sample: JS error: 'colors' is null or not an object
- [EXTJSIV-4370] Theme Viewer Example: Mouse is stick to Resizable handle and not able to navigate away.
- [EXTJSIV-4393] Drag and Drop Example: JS error is displayed
- [EXTJSIV-4447] Webdesktop: Displaying blank page while accessing webdesktop example
- [EXTJSIV-4548] Combination Examples - Feed viewer : Unable to scroll the data in feed preview panel after selecting the Hide option in the preview drop down menu.
- [EXTJSIV-4559] Feed Viewer & MVC - Feed Viewer - Created empty row/ space with a bullet upon clicking on open all button
- [EXTJSIV-4658] Combination Examples - EXT JS 3 & 4 on one page - Showing JS Error while accessing the page
- [EXTJSIV-4676] Combination Examples - Portal demo :Displaying Js error upon reordering portelts in a specific scenario
- [EXTJSIV-4680] Combination examples : Theme viewer - Horizontal & Vertical scrollbars are disappearing upon changing the themes in the theme viewer example
- [EXTJSIV-4686] Combination Examples:Unable to expand/collapse north & east panels upon clicking on panels collapse button continuously.
- [EXTJSIV-4707] Combination examples : Web desktop - Displaying blank page upon accessing webdesktop example.
- [EXTJSIV-4713] Combination examples:Theme viewer-Unable to expand the "Tree panel" window once after collapse
- [EXTJSIV-4758] Combination Examples:Web desktop - Desktop covered with mask after opening the examples in the taks bar.
- [EXTJSIV-4772] Combination Examples : Web desktop: Unable to minimize the windows upon clicking on title headers in the taskbar.
- Forms
- [EXTJSIV-2218] Failed test: Verify the time field in the Form fields type form
- [EXTJSIV-2229] Failed test: Verify whether live search functionality is displaying correct results and topics by giving invalid data
- [EXTJSIV-2240] Failed test: Verify the user is able to enter details manually in the Company details table
- [EXTJSIV-2242] Failed test: Verify the error message when user click on save button without filling mandatory fields.
- [EXTJSIV-2360] Failed test: Verify whether live search functionality is displaying correct results and topics by giving valid data
- [EXTJSIV-3341] adding checkbox in checkbox group (4.0.1)
- [EXTJSIV-3445] getFieldValues deprecation needs to be removed from the compat layer
- [EXTJSIV-3624] Bugs with Ext.form.field.Combo and Editor Grids
- [EXTJSIV-3690] Model background (gray color) is not completely stretched in the page & Confirmation message pop-up window is allowed to click on the other controls in the page
- [EXTJSIV-3701] Time field's "setValue()" method does select the value on the picker dropdown.
- [EXTJSIV-3939] Bulk-rendering: Trigger field: Trigger needs to have its afterRender logic transplanted or at least we need to suspend layouts during render
- [EXTJSIV-3948] Forms : Displaying JS error while accessing MultiSelect ItemSelector & Custom Form Fields examples
- [EXTJSIV-3999] Forms : Registration Form - Registration form is not properly loaded in registration example page on FF3.6,Google Chrome 10
- [EXTJSIV-4012] RadioGroups broken in 4.0.2
- [EXTJSIV-4196] Validation error not shown when user types 15/18/2001 in a date field: value is changed into 15/06/2002 when leaving the field.
- [EXTJSIV-4233] Forms don't remember field state
- [EXTJSIV-4329] Fieldset body div is sized to be too tall
- [EXTJSIV-4387] Forms Example: JS error: 'length' is null or not an object
- [EXTJSIV-4388] Form Example, Registration Form: JS error is displayed
- [EXTJSIV-4497] MultiSelect & ItemSelector - Displaying JS error when uncheck Toggle enabled check box
- [EXTJSIV-4506] Forms - Binding a Grid to a Form - Rating label caption alignment in not proper. Label caption should align next to radio button
- [EXTJSIV-4535] "Form" : "Custom form field"- Displaying wrong page numbers in the pagination
- [EXTJSIV-4648] Ext.form.FieldSet: beforecollapse and beforeexpand events aren't implemented
- [EXTJSIV-4667] Trigger field disabling is broken
- [EXTJSIV-4684] Checkbox / Radio Groups:The validation message for "Custom Layout" in Check box Group field set is not properly aligned.
- [EXTJSIV-4695] Forms: Displaying JS error while accessing the "File Upload Field" and "Custom form Field" examples
- [EXTJSIV-4734] Shopping cart checkout : Fields are missing in the payment field set
- [EXTJSIV-4754] Forms : File Upload Field - File browse window is getting displayed upon clicking on "Name"field
- [EXTJSIV-4755] Forms : File Upload Field - Uploaded file name is not displaying in file upload form "Success" dialog box.
- [EXTJSIV-4769] Forms - File Upload Field : Displaying js error while accessing the File Upload Field example
- Grid
- [EXTJSIV-1158] Paging Grid: No default text for topics
- [EXTJSIV-1171] Grid: Dead Corner when Scrolling Horizontally
- [EXTJSIV-2005] Failed test: Verify Sort Ascending for the column in the Cell Editing Grid
- [EXTJSIV-2014] Failed test: Verify the tab scrollers if there are no tabs to display
- [EXTJSIV-2015] Failed test: Verify the tabs display when user click's on open all button for more than once
- [EXTJSIV-2019] Failed test: Verify Index column in the Grid with Numbered Rows grid.
- [EXTJSIV-2053] Failed test: Verify the Search functionality for the Regular Expression check box.
- [EXTJSIV-2078] Failed test: Verify the Time filed in the form widget
- [EXTJSIV-2329] Failed test: Verify the user is able to Reset the grids
- [EXTJSIV-2375] Grids scrollbars has 1px off
- [EXTJSIV-2401] Failed test: Verify Add columns in the Grid plugin
- [EXTJSIV-2418] Failed test: Verify whether selected Cell is allow to Edit in the Cell Editing Grid
- [EXTJSIV-2444] Failed test: Verify scroll bar appears when size of the columns are increased or vice-versa
- [EXTJSIV-2458] Failed test: Verify the lock functionality in the grid
- [EXTJSIV-2543] Cell Editing, intra-row change of focus.
- [EXTJSIV-3309] Grid reconfigure breaks columns layout
- [EXTJSIV-3378] Filtered result set does not change size of scrollbar, result set repeated when scrolling beyond bounds of actual result set
- [EXTJSIV-3395] Columns headers are missing upon increase the column size.
- [EXTJSIV-3402] 4.0.2 Grid vertical lines of the header and those of the rows don't correspond in IE9
- [EXTJSIV-3419] RowEditing can't change back to the original loaded value
- [EXTJSIV-3628] 4.0.2 Cell not editing correct value when data in cell is updated..
- [EXTJSIV-3636] Setting the iconCls config on Ext.grid.column.Action results in the css class being added to the acual <img> element twice
- [EXTJSIV-3643] Grouped Grid - Adding new record in a list retrieves incorrect data
- [EXTJSIV-3763] [4.0.5] Hard crash in IE when rendering locking grid to a table cell
- [EXTJSIV-3775] [4.0.5] 'itemclick' event doesn't bubble when using locking grid
- [EXTJSIV-3797] Ext.grid.column.Column 'id' config gets put directly into the DOM, allowing ID duplication and random issues
- [EXTJSIV-3899] Event sequence grid/view/selectionmodel not correct
- [EXTJSIV-3921] RowEditor Update/Cancel buttons outside of grid viewport
- [EXTJSIV-3951] Grid from Markup - Column header is displaying at the top of the page when click on "Create Gird" button.
- [EXTJSIV-3953] Cell Editing Grid - Not able to add/edit a record in the grid when Add plant button is selected in IE 6 & 7.
- [EXTJSIV-3962] Setting width to negative value throws a JS error in IE
- [EXTJSIV-3994] How to prevent extjs grid from scrolling when clicking on a cell ?
- [EXTJSIV-3998] Vertical scrollbar doesn't appear when it should when using Row Expander plugin
- [EXTJSIV-4000] Resizing columns while row-editing a grid messes up column headers
- [EXTJSIV-4011] Grid filter extension: filters menu item appearance bug
- [EXTJSIV-4019] Drag and drop : Grid to Grid DnD - Displaying JS error upon placing the cursor on a specific area in "Record Name" column header
- [EXTJSIV-4021] Problem with stateful grouped header grid
- [EXTJSIV-4024] XML Grid - By default horizontal scroll bar is appearing in IE 8 and disappearing after click on any column header
- [EXTJSIV-4052] Rows get out of sync only when grid is scrolled to the very bottom - All browsers
- [EXTJSIV-4086] Grouping with Remote Summary - Show summary button is not working.
- [EXTJSIV-4092] Grids Columns are 1px off with IE9 in quirk mode
- [EXTJSIV-4094] Scroll bar in grid panel stops responding
- [EXTJSIV-4127] Grid ColumnLayout forceFit "calculate" method update
- [EXTJSIV-4152] Ext4: How to do grid grouping groupHeader with dynamic grouping field header text?
- [EXTJSIV-4161] [4.0.0] RowEditor ignores errorSummary
- [EXTJSIV-4168] Grid bug when using reconfigure() and locked column
- [EXTJSIV-4185] Stateful grid with remoteSort true does not restore column sorting
- [EXTJSIV-4228] Style information attached to the metadata parameter of the renderer function is overridden by global style column attributes
- [EXTJSIV-4248] [4.0.2a] Grid sorter damaged when using a stateful grid
- [EXTJSIV-4249] examples/grid/group-header-grid.html allows sub group to become primary
- [EXTJSIV-4258] Ext.grid.plugin.CellEditing + Ext.selection.CheckboxModel = TypeError
- [EXTJSIV-4281] Infinite Scrolling - Blue lines are displaying when uncheck all other columns and decreasing the topics column size in IE 8
- [EXTJSIV-4282] Row Editor fields are not aligned to the grid cells properly when used on a grid with a checkbox selection model
- [EXTJSIV-4310] [4.0.7] Ext.Application and result of fireEvent: fireing event beforeedit do not return a boolean when grid is initialise with Ext.application
- [EXTJSIV-4314] grid-row-over class gets removed if the data in the record underlying a hovered row is changed
- [EXTJSIV-4317] When using cell editing with row selection model, editor dies when moving to column that does not have an editor defined.
- [EXTJSIV-4323] grid sort - missing icon from grid header after reconfigure
- [EXTJSIV-4347] Modifying of saveBtnText, cancelBtnText in Ext.grid.plugin.RowEditing - don't get passed into Ext.grid.Roweditor
- [EXTJSIV-4371] Grid Plugin Example: Bug in RowWrap. Hidden columns are not being hidden in data.
- [EXTJSIV-4398] [4.1PR][ALL BROWSERS] Grid View Update problems when moving & resizing columns
- [EXTJSIV-4420] Initial LoadMask on GridPanel not shown
- [EXTJSIV-4424] Calling reconfigure on a grid with CheckBox model causes additional checkbox columns
- [EXTJSIV-4430] Ext.grid.property.Property sortableColumns Ignored
- [EXTJSIV-4454] Displaying JS errors while accessing Grid Cell editing,RESTful Store with GridPanel and RowEditor,Editable Grid with Writable Store,Toolbar Button Groups Vertical Toolbars examples
- [EXTJSIV-4470] Grids : Grid Filtering (Updated) :Displaying JS error upon clicking on "All filter data" in grid filters example.
- [EXTJSIV-4484] Grids:Grouping Grid Clear grouping button is not working
- [EXTJSIV-4493] Scrollbar gets out of sync when new records are added to the grid
- [EXTJSIV-4496] Grids: "RESTful Store with GridPanel and RowEditor" and "Editable Grid with Writable Store" examples throw JS error while accessing in IE6 browser
- [EXTJSIV-4501] [4.1PR][IE7,IE9] Space between Grid View and scrollbars are off.
- [EXTJSIV-4504] Dragging a group column does not move all columns in the group.
- [EXTJSIV-4507] Grids -> Grids with locking capability: JS error is displayed while trying to unlock 'Company Name' column.
- [EXTJSIV-4508] Grids -> Grouping Grid: JS error is displayed when clicked on 'Group by this field' or when tried to uncheck 'Name' column.
- [EXTJSIV-4515] CellEditor doesn't work with RowBody and RowWrap grid features [Deer Valley Unified School District]
- [EXTJSIV-4546] Grids : Buffered grid - Data In the salary column is not displayed in sorted order after moving the data by using scroll pointer.
- [EXTJSIV-4551] Localization - GroupingFeature: Ext.grid.GroupingFeature is wrong
- [EXTJSIV-4560] Drag and Drop - Field To Grid DnD : Cell that is dragged and placed the text "test" is not sorting properly under company column
- [EXTJSIV-4567] Using paging grid within a form makes page input a form field
- [EXTJSIV-4579] Grids editing visual test throws js error in IE8
- [EXTJSIV-4617] Grid -Grouped Header Grid (Updated): Horizontal scroll bar is not displaying to view the company column.
- [EXTJSIV-4634] Drag and Drop - Grid to Grid DnD: Dragged records are not shown in Second Grid
- [EXTJSIV-4643] Grouping grid causes JS errors in visual test
- [EXTJSIV-4645] Column header menu trigger el is not deactivated upon Menu hide.
- [EXTJSIV-4660] Grouped Header Grid : Even one sub item is selected ,all the sub items are get selected and displayed in the grid
- [EXTJSIV-4705] Grids - Basic Array Grid : Column header drop down menu items list is misplaced
- [EXTJSIV-4725] Checkbox header is not centered
- [EXTJSIV-4735] Grid Filter :Text on the "OK" button is left aligned
- [EXTJSIV-4737] Toolbars and Menus - Ext Grid Actions: Column headers are disturbed when columns size is expanded
- [EXTJSIV-4740] Cell Editors created outside grid code are not activated when selecting cell
- [EXTJSIV-4811] Grids : Basic Array Grid : Grid is not displaying sort values when refresh the page and no field selection option for "buy/sell" field.
- [EXTJSIV-4813] Grids: Grouping : No data (blank) is displayed in grouping gird example in a specific
- [EXTJSIV-4833 ] Combination Examples - Feed Viewer : Displaying js when clicked on "Sci/Tech - Google News" item under the Feeds panel
- [EXTJSIV-4836] MVC -> Feed Viewer : Displaying error message while accessing the example on Safari5 and Chrome browsers only.
- [EXTJSIV-4838] Grids: Grid with Live Search Capability - Displaying JS error while click on "<" or ">" button for searching the data in the grid.
- [EXTJSIV-4839] Grid - Displaying JS error when clicked on last row / last row above the Horizontal scroll bar in the grid. This issue observed across all examples having grid.
- Layouts
- [EXTJSIV-1544] A gray line appears after clicking on subsequent accordion headers and coming back to the first header
- [EXTJSIV-2074] Failed test: Verify that East panel expands when clicked on the expand button at left side of the center panel
- [EXTJSIV-2263] Failed test: Verify whether East Side panel collapses when clicked on collapse button
- [EXTJSIV-2266] Failed test: Verify the user is able to click on drop down list and able to see the options
- [EXTJSIV-2301] Failed test: Verify Border layout page alignment while resizing the browser
- [EXTJSIV-2390] Failed test: Verify whether Accordion panel width can be increased / decreased
- [EXTJSIV-2405] Docked items added after render don't render correctly
- [EXTJSIV-3409] CardLayout deferredRender config ignored when component is added to a container
- [EXTJSIV-3977] [4.0.6] Container in hbox height issue: When there is an hbox with a container in it, the height of the container's (and other siblings) surrounding div (class: x-box-inner) gets set to the height of the largest child
- [EXTJSIV-3990] Editor - Label captions are overlapping on the text fields when long label caption is entered without any space.
- [EXTJSIV-4076] Draggable Sprite Doesn't Follow Cursor
- [EXTJSIV-4088] Layout Browser - Custom Layouts - Center - Page is not center aligned and extra empty space is created next to Sample layout panel in IE 7
- [EXTJSIV-4134] [4.0.6] Load mask problem: create new window (modal: true) and make setLoading(true) for it. Than I click to header of window, mask (with text "Loading") moves into the background of the window
- [EXTJSIV-4150] Grouping don't update panel height
- [EXTJSIV-4170] FileUploadField label does not collapse
- [EXTJSIV-4171] User details - Drop down items are displaying at the top of the page when double-click on the Editor panel
- [EXTJSIV-4182] Splitter-usage breaks Layouts
- [EXTJSIV-4197] Button menu misaligned on first appear, correct on second appear
- [EXTJSIV-4216] Submenu disappears by going to its item obliquely
- [EXTJSIV-4223] Hidden floated element positioning bug
- [EXTJSIV-4253] Stateful implementation broken for panels in Accordion layout
- [EXTJSIV-4342] Layout autoWidth/Height only supports "shrink wrap" mode
- [EXTJSIV-4343] Themes Example has JS error on IE6 only
- [EXTJSIV-4344] Need to constrain width/height to >= 0 in IE
- [EXTJSIV-4352] The "layout bubble" algorithm does not always climb high enough
- [EXTJSIV-4353] Adding components to a running layout fails
- [EXTJSIV-4361] Message-Box sample: Buttons on the pop-up dialog are truncated on the right end and also text boxes are not aligned properly for some pop-up dialogs.
- [EXTJSIV-4363] Forum-search sample: No search results displayed
- [EXTJSIV-4364] Combo Box sample: The "States" drop down box content is overlapping with selected value
- [EXTJSIV-4369] Feed-viewer sample: Nothing is displaying (Blank) after clicking on feed "collapse" button.
- [EXTJSIV-4374] tab overflow menu example: JS error: 'targetSize' is null or not an object. UX needs updating to accommodate new layout system.
- [EXTJSIV-4377] Layout Browser Example: JS error and missing collapse tool on footer panel
- [EXTJSIV-4380] Complex Layout example: JS error is displayed
- [EXTJSIV-4381] Accordion Layout Example: JS error is displayed
- [EXTJSIV-4386] [4.1PR] - layout fails: lastComponentSize is undefined
- [EXTJSIV-4391] BoxReorderer needs refactoring to work with new layout system.
- [EXTJSIV-4395] Table Layout Example: Blank page is displayed
- [EXTJSIV-4401] Problem with panel initially collapsed in a border layout
- [EXTJSIV-4404] Error: ext-all-debug.js:51144 Uncaught TypeError: Cannot read property 'isDetachedBody' of undefined
- [EXTJSIV-4405] no onRender: function (ct, position) for Fields
- [EXTJSIV-4406] Error on tab creation: ext-all-debug.js:78809 Uncaught TypeError: Cannot call method 'scrollIntoView' of undefined.
- [EXTJSIV-4409] growMax and growMin aren't honored for Text.js and TextArea.js [Rally]
- [EXTJSIV-4439] [4.1.0PR] Error with collapsed region in border layout: "me.placeholder is undefined"
- [EXTJSIV-4449] Field layout measures its height before acquiring its width resulting in incorrect height.
- [EXTJSIV-4489] Box layout's menu overflow handler does not work.
- [EXTJSIV-4534] Picker "Loading..." mask stuck on: loading mask on combo's with property queryMode='local' sometimes remains active and don't disappear when you click on picker.
- [EXTJSIV-4570] BorderLayout expand/collapse regression
- [EXTJSIV-4610] Ext-layout-container-Accordion -> animate: false not working
- [EXTJSIV-4619] Combination Examples -Theme Viewer example :The loader icon is over lapping the calendar component.
- [EXTJSIV-4624] Layout Managers - Complex Layout (Updated): Raises js error when clicked on expand/ collapse button for South Panel
- [EXTJSIV-4632] Unexplained load mask in upper left corner of browser again
- [EXTJSIV-4633] Progressbar is going beyond the boundries when click on Show button of any field
- [EXTJSIV-4637] Field layouts allow triggers to wrap.
- [EXTJSIV-4691] Layout Manager - Anchor Layout (form) : The Text Area is truncated
- [EXTJSIV-4698] Ext.window.Window height not being calculated correctly
- Menu
- [EXTJSIV-3354] Ext.menu.Menu positioning problem while scopeResetCSS:true
- [EXTJSIV-3653] Grid menu filter loses focus when mouse leaves the component
- MVC
- [EXTJSIV-2308] Failed test: Verify Pane resize on Feedviewer page using resize bar
- [EXTJSIV-2311] Failed test: Verify the focus on the tabs when user click on open all button
- [EXTJSIV-2312] Failed test: Verify the tabs display when user click's on open all button.
- Others
- [EXTJSIV-3555] autoEl does not support the string version
- [EXTJSIV-3928] Ext.Direct - Callback not invoked after a request is aborted/timesout
- [EXTJSIV-3966] Miscellaneous :Browser State Management -Showing JS error upon clicking on "Collapse/Expand" button of Collapse/expand width panel
- [EXTJSIV-4123] Ext.Array.from() with function gives empty array
- [EXTJSIV-4142] [4.06] readOnly with xtype: 'filefield': A field "filefield" can be charged even if readOnly
- [EXTJSIV-4149] [4.0.2] Ext.Element fadeOut not respecting useDisplay:true
- [EXTJSIV-4159] Add & remove menuitems and "me.dom is undefined"
- [EXTJSIV-4162] Appending Nodes to an Async Tree: when append the node and call store.sync(), the proxy is using the update url instead of the create url
- [EXTJSIV-4173] [4.0.2a] HtmlEditor does not strip out defaultValue as expected due to absolute check
- [EXTJSIV-4174] Zooming broken in some zoom levels in Chrome, IE 8
- [EXTJSIV-4177] FiltersFeature arrow in menu: the arrow in the filters menu is missing
- [EXTJSIV-4180] [4.0.6] Ext.Function interceptBefore and interceptAfter - add scope param
- [EXTJSIV-4181] Ext.form.field.Number.getSubmitValue() returns localized Value
- [EXTJSIV-4192] Ext.container.AbstractContainer#suspendLayout is not reentrant
- [EXTJSIV-4193] Ext JS 4: Hiding grouped headers (hideGroupedHeader = true) throws exception
- [EXTJSIV-4212] [4.0.6] actioncolumn text/header
- [EXTJSIV-4217] model copy() and phantom: model1.copy() returns always a non-phantom model, not taking into account whether model1 is phantom or not.
- [EXTJSIV-4220] [4.0.2a] ComponentDragger setting positions incorrectly
- [EXTJSIV-4221] ComboBox readOnlyCls: Read Only Class is not added to the component's main element when setting readOnly property to the combobox field
- [EXTJSIV-4222] [4.0.4] Wrong Definition in Design _grid.scss on line 83
- [EXTJSIV-4224] Ext.form.CheckboxGroup.validate() may return false even if disabled is true
- [EXTJSIV-4225] After an edit is made to a record in an editable tree, the record's non-persistent fields get reset to their default values
- [EXTJSIV-4235] QuickTip's ignoring showDelay configuration
- [EXTJSIV-4236] 4.0.6: maxLength and enforceMaxLength on TextArea not working in IE8
- [EXTJSIV-4244] timefield scrollbar dissappears - ExtJS 4.0.6
- [EXTJSIV-4246] Model save: operation with no response
- [EXTJSIV-4261] Ext4 sandbox auto generated id conflict with Ext3
- [EXTJSIV-4263] Datefield picker ignoring control keys
- [EXTJSIV-4266] Not able to use HTMLEditor on IE(8) when accessing over SSL - ExtJS 4.0.6
- [EXTJSIV-4268] [4.0.6] animCollapse: false not honored
- [EXTJSIV-4292] TimeField value not cleared from the list on form reset
- [EXTJSIV-4293] [4.0.2a] Ajax error for non-terminating connections in IE6
- [EXTJSIV-4294] [4.0.7] 'name' not rendered to combo's input element
- [EXTJSIV-4297] Reloading TreeStore adds all records to store getRemovedRecords
- [EXTJSIV-4299] Bug in Grouping Feature (and solution)
- [EXTJSIV-4306] [4.0.7] Combo box issue in displaying value in view port layout: 2n click of combo box cause incorrect layout with values showing on top-right corner of the IE browser
- [EXTJSIV-4308] [4.0.6] Disabled fields retain invalid field decoration
- [EXTJSIV-4311] [4.0.7] Warning shown when a fieldset is removed
- [EXTJSIV-4312] [4.0.7] Error on bind Store if view is not rendered
- [EXTJSIV-4316] Store.clearFilter() remove added records
- [EXTJSIV-4320] CellModel does not keep track of selections
- [EXTJSIV-4324] [4.0.7] Ext.form.field.Number setMaxValue() and setMinValue() bug
- [EXTJSIV-4327] building from SVN fails
- [EXTJSIV-4336] 4.1: Calling element.load causes error: "this.get is not a function"
- [EXTJSIV-4373] Multiple Sorting Example: Bug in BoxReorderer plugin
- [EXTJSIV-4397] Drag Drop Manager doesn't select correct drop target
- [EXTJSIV-4400] Wrong method selected when saving a record with id = null.
- [EXTJSIV-4413] [ext-4.1-pr1] Some coding isues. - invalid CSS and code trucations in a few files
- [EXTJSIV-4418] Infinite scrolling with JsonP proxy causes enormous memory consumption
- [EXTJSIV-4426] Problem with column header grouping at level 3. Columns can not be hidden.
- [EXTJSIV-4427] Ext.Function.createBuffered() ignores the caller's arguments
- [EXTJSIV-4428] setEditor cannot work in rowEditing
- [EXTJSIV-4443] Dragging and dropping tree nodes to reorder them changes the index field of the node that was dragged, but does not change the index field of the other sibling nodes that come after it.
- [EXTJSIV-4444] Ext.util.Format.currency decimals ignored when set to 0
- [EXTJSIV-4448] Drag & Drop - Custom Drag & Drop - Getting JS error while drag and drop any item to right side field.
- [EXTJSIV-4456] [4.0.7] Ext.util.Format.number() has inconsistent behavior
- [EXTJSIV-4473] Combo box : Basic Combo box:Tool tips are not displaying upon mouse-hover on the State.
- [EXTJSIV-4495] Miscellaneous - Slider - By default, Sliders are overlapping each other only one slider is displaying
- [EXTJSIV-4509] Accessibility -> Kayboard Feed Viewer: Not able to navigate to all the buttons in the Feed Viewer using Keyboard alone.
- [EXTJSIV-4520] [4.1.0PR] RowWrap feature: error "Node was not found"
- [EXTJSIV-4542] (new Date(year, month, 1)).getLastDateOfMonth is not a function in Ext.picker.Date
- [EXTJSIV-4554] [BUG] Combobox picker height is not recalculated on refresh
- [EXTJSIV-4571] CheckBoxGroup.resetOriginalValue throws an exception in Ext.Base.callParent
- [EXTJSIV-4588] Miscellaneous -Localization (Dynamic) :The The Month of the Year menu item should be uncheck without any java script error.
- [EXTJSIV-4592] Ext.Component#setLoading sets load mask text only on first call
- [EXTJSIV-4626] Direct transactions not cleaned up
- [EXTJSIV-4638] [4.0.7] TreeStore crud broken
- [EXTJSIV-4641] Can't override singleton
- [EXTJSIV-4644] What happened to markDirty view config?
- [EXTJSIV-4696] BUG: Ext.Function.pass is corrupted
- [EXTJSIV-4739] Miscellaneous - Localization(dynamic) :The Language selector field is stretched
- [EXTJSIV-4743] hideEmptyLabel not applied (4.1.prev, 4.0.7)
- [EXTJSIV-4744] [4.0.7] window clobbered if dynamic loading fails
- [EXTJSIV-4746] [4.0.7] Exception inside the error handling of JSON reader
- [EXTJSIV-4777] Initially disabled toolbar cannot be re-enabled
- Panel
- [EXTJSIV-1652] A + cursor is shown after collapsing/expanding a panel while keeping the mouse pointer fixed in place above the collapse/expand button
- [EXTJSIV-3038] [4.0.3] Ext.grid.Panel.destroy generates extra Ajax requests
- [EXTJSIV-3368] The "floating" configuration property does not work corectly on Panels
- [EXTJSIV-3410] Collapsing/expanding of flexed panels doesn't work
- [EXTJSIV-3443] Panels sometimes disappear when their siblings are collapsed
- [EXTJSIV-3594] [4.0.5] Panel disappears (width=0) after collapse
- [EXTJSIV-3762] When shadowed panel is moved, its shadow is left behind.
- [EXTJSIV-4191] Collapsible panels in vbox layout do not readjust height
- [EXTJSIV-4194] No horizontal scrollbar for Panel with big content
- [EXTJSIV-4302] treePanel viewConfig - corruption of class definition
- [EXTJSIV-4338] Strange Ext.panel.Panel modal behaviour: Panel modal disappears when loadmask is active.
- [EXTJSIV-4354] Panel collapse/expand need to notify ownerLayout after animation
- [EXTJSIV-4408] panel.hide(true) with panel.preventHeader=true -> error: this.header is undefined
- [EXTJSIV-4524] Duplicate state events added: in Ext.window.Window and Ext.panel.Table
- [EXTJSIV-4654] calling setTitle() before rendering
- Tabs
- [EXTJSIV-3719] The icon in tab is not centered vertically
- [EXTJSIV-3773] Layout body content on tabchange TabPanel not recalculated
- [EXTJSIV-3984] Basic Tab -Bottom border is missing in long text tab. Displaying only after closing short text tab
- [EXTJSIV-4034] 4.0.6 breaks margins inside a tab panel
- [EXTJSIV-4284] Tab remains hidden after focusing on it and removing it and then re-adding it
- [EXTJSIV-4394] Tab Example: Tab problem. Button is zero width even though the text span has a width.
- [EXTJSIV-4407] [4.0.7] Tab font variable never honoured
- [EXTJSIV-4414] When a new tab is created the layout of the tab is not triggered - tab is not shown in tabbar.
- [EXTJSIV-4511] Tabs -> Advanced Tab : Left side navigation arrow button is not enabled.
- [EXTJSIV-4745] Multiple Tab Panel Instances with dockedItems
- [EXTJSIV-4812] tabchange fires for setting initial tab
- Theme
- [EXTJSIV-3496] The theme index example is automatically scrolled on IE.
- [EXTJSIV-3567] Gray theme has incorrect backgroup color (showing blue)
- [EXTJSIV-4271] Theme Viewer:Form Widgets- Check box positions are changing when unselect the "Foo" check box.
- [EXTJSIV-4277] Theme Viewer - Horizontal scroll bar is seen only when trying to submit any data where even its not required.
- [EXTJSIV-4530] Theme viewer :Displaying JS error upon clicking on Time field dropdown menu after entering text in the time field.
- [EXTJSIV-4558] Theme Viewer - Calendar - Displaying JS Error When click on Month Field in the Date Picker
- [EXTJSIV-4706] Neptune theme base variables and widgets styling need to be changed to match recent changes to ExtJS
- [EXTJSIV-4771] Combination Examples - Theme Viewer : Displaying js error when uncheck "Foo" check box under "Form Widgets" window in Theme Viewer
- Toolbars
- [EXTJSIV-3963] Toolbars and menus : Displaying JS error while accessing Vertical Toolbars example
- [EXTJSIV-4163] Toolbars and Menus : Ext Toolbar Actions - "Change text" window caption is moving while entering long text in the text box.
- [EXTJSIV-4205] PagingToolBar problem: in case of zero (0) records there is a problem on paging toolbar that show paging 1 of 0 and it also possible move to next page so 2 of 0 , 3 of 0 etc
- [EXTJSIV-4229] In IE9 on a toolbar docked to a side of a panel, an icon showing 2 arrows is displayed on a menu item without text
- [EXTJSIV-4231] Paging toolbar does not react on the keys PAGEUP, PAGEDOWN, Shift+UP and Shift+DOWN
- [EXTJSIV-4318] Separator in the Vertical Toolbars example not aligning properly
- [EXTJSIV-4384] Ext Toolbar Actions Example: Text field not sized properly. Problem with TextField layout
- [EXTJSIV-4463] toolbar/overflow.html - overflow button is not showing
- [EXTJSIV-4531] Toolbars and Menus : Overflow Toolbar : By default Choose button label caption is not displaying properly.
- [EXTJSIV-4587] Tool Bars and Menus - Over Flow example :Choose a Color menu item should be displayed adjacent to the Button
- ToolTips
- [EXTJSIV-4218] Tooltip for Tab is not shown
- [EXTJSIV-4485] Quick Tip shows twice in IE [Thunderhead LTD]
- Tree
- [EXTJSIV-1476] Inconsistent padding around tree elements when comparing quirks versus strict modes
- [EXTJSIV-1954] Tree Horizontal Scrolling
- [EXTJSIV-2202] Failed test: Verify that user can drag and drop the folders or files from one tree panel to another tree panel
- [EXTJSIV-2539] TreeGrid + CellEditing broken
- [EXTJSIV-3499] Ext.tree.Panel border:false still shows top border
- [EXTJSIV-3571] [4.0.2] one Store and two tree.Panel - Expand/Collapse causes item disappearing from the 2nd tree and duplicated in the 1st tree
- [EXTJSIV-3596] The callback function for NodeInterface#expand() gets called before the node has finished expanding
- [EXTJSIV-3600] New nodes added to a Tree using the node interface do not show as "phantom" records
- [EXTJSIV-3640] Adding a custom renderer increases height of unlocked grid columns but doesn't sync locked column
- [EXTJSIV-3920] NodeInterface's "icon" config does not work as documented
- [EXTJSIV-3954] Trees : Displaying JS error while accessing all examples in the Trees examples section
- [EXTJSIV-4376] Tree Example, Drag and Drop Reordering: Folder nodes do not expand when clicked.
- [EXTJSIV-4472] Trees : Check Tree :Displaying Js error upon clicking on "Get checked nodes" button .
- [EXTJSIV-4516] TreeGrid not expandable on 3rd level
- [EXTJSIV-4529] Trees : Tree Grid -Displaying JS error upon clicking on folders in the tree grid example
- [EXTJSIV-4586] Trees -> Check Tree : Masking on the page is not removed after cancelling the pop-up dialog.
- [EXTJSIV-4693] Trees - Check Tree : Not displaying Expand / Collapse (+/-) icons for parent nodes
- Window
- [EXTJSIV-1732] Progress Dialog window locking
- [EXTJSIV-1748] MessageBoxWindow autosizing probably needs a fudge factor to avoid unwanted word wrapping.
- [EXTJSIV-1994] Strange Ext.window.Window rendering issue in WebKit browsers when placed over Java applet
- [EXTJSIV-3521] Layout issue when Resizing Window
- [EXTJSIV-3772] Mask for modal window doesn't completely cover document.body
- [EXTJSIV-3902] Modal windows with long pages - mask not covering whole document.body
- [EXTJSIV-3938] Windows can be resized when maximized, leading to unexpected interaction patterns
- [EXTJSIV-3985] Windows - MessageBox : There is no gap in between custom buttons
- [EXTJSIV-4009] Message Box - Page getting grayed out after click on Multi-line prompt,Yes/No/Cancel,icons ,Progress Dialog,Wait Dialog "show" buttons.
- [EXTJSIV-4018] Layout Window- Displaying JS Error when click on Collapse/Expand button of Navigation window
- [EXTJSIV-4204] Ext.window.Window : Esc problem
- [EXTJSIV-4301] window with no header and draggable false throws error on show with animatetarget
- [EXTJSIV-4322] [4.0.7] / [4.1] MessageBox showing with large text
- [EXTJSIV-4460] Modal Window not modal in sandbox
- [EXTJSIV-4471] MessageBox : Displaying JS error upon clicking on all "show" buttons in the Message box example
- [EXTJSIV-4528] Windows - Layout Window: The navigation panel is not collapsing properly and displaying JS error upon clicking on collapse/expand button.
- [EXTJSIV-4591] Windows - Layout Window :The Navigation panel's hide and show arrow is not appearing for the first time
- [EXTJSIV-4670] Windows - Windows Variation - By default, constrained windows are displaying at the top of the page.