-
23 Aug 2012 4:43 AM #461
I'm not sure if you consider this a defect. I wanted to point out that component properties that are added dynamically are not documented.
See the Button code fragment. The childEls array lists an array of properties that will be added automatically. I think these are public properties, but they are not documented.
Code:Ext.define('Ext.button.Button', { ... childEls: [ 'btnEl', 'btnWrap', 'btnInnerEl', 'btnIconEl' ], ...
-
30 Aug 2012 8:31 AM #462
ExtJS v 4.1.1
Ext.menu.CheckItem - Missing config option "checkHandler"
Notes: This is easily the most confusing documentation bug I've come across yet. In ExtJS 3 and earlier the CheckItem.handler handled the check event, but in ExtJS 4 this has been changed such that CheckItem.checkHandler handles the check event, while (inexplicably) CheckItem.handler now handles browser events (wtf???).
Please, document checkHandler as well as providing a note in the help at the top indicating this rather confusing change in the API.
Thank you!
-
4 Sep 2012 11:54 AM #463
Grid column grouping incorrectly described in example
Grid column grouping incorrectly described in example
ExtJS v4.1.1
Two things:
1 - The example "Grouped Header Grid" describes the syntax for grouping headers as:
This is incorrect and does not actually work in ExtJS 4.1.1. The example code itself, however, does it correctly even though the description is wrong. The correct syntax is:Code:{header: 'Category Header',headers: [{header: 'First Sub Header', dataIndex: 'subHeaderField1'}, {header: 'Second Sub Header', dataIndex: 'subHeaderField2'}]}
2 - I could not find any documentation of this feature in the API docs. I suggest adding a section to the Ext.grid.Panel documentation that covers this feature.Code:{text: 'Category Header', columns: [{text: 'First Sub Header', dataIndex: 'subHeaderField1'}, {text: 'Second Sub Header', dataIndex: 'subHeaderField2'}]}
-
4 Sep 2012 12:20 PM #464
Just noticed this today. In the latest Chrome (21.0.1180.89 m) if you click in the search box on the top right and drag to the right, the entire top bar moves left, eventually hiding the bar.
Before:
senchabefore.jpg
After:
senchaafter.jpg
-
4 Sep 2012 2:07 PM #465
Hmm.. maybe it's been fixed as I can't reproduce that in Chrome 23.0.1251.2 dev. Will have to check on another machine later.
-
5 Sep 2012 12:51 AM #466
Confirmed on Chromium 21.0.1180.57. So I think it's a bug in Chrome that's been fixed already in latest dev releases.
-
5 Sep 2012 3:39 AM #467
In IE8 docs throw errors
In IE8 docs throw errors
when trying to open Ext.draw.Surface or other draw classes.
My blog: http://vadimpopa.com
-
10 Sep 2012 11:15 AM #468
4.1.2 bad event args naming
4.1.2 bad event args naming
The last two event args of the reconfigure event of the Ext.grid.Panel are kind of wrong.
Please check:
/extjs-4.1.2/docs/source/Panel2.html#Ext-grid-Panel-event-reconfigure
Also:
/extjs-4.1.2/docs/source/Toolbar.html#Ext-toolbar-Toolbar-event-overflowchange
-
12 Sep 2012 4:42 AM #469
@vadimv Thanks. I've tracked down the bug. The docs site should get an update in a few days.
-
12 Sep 2012 7:05 AM #470
It would be nice if we had documentation for the newly added destroyable option.
Code:this.cleanups = cmp.on({ select: this.onSelect, foo: this.onFoo, bar: this.onBar, change: function () { // ... yes even this :) }, scope: this, destroyable: true // create destroyable object });
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote