forked from probonogeek/extjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease-notes.html
5632 lines (5520 loc) · 266 KB
/
release-notes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>
Ext JS Release Notes
</title>
<link rel="stylesheet" type="text/css" href="welcome/release-notes.css" media="all">
</head>
<body>
<p>
<a href="http://www.sencha.com/" id="logo" name="logo">Ext JS - JavaScript Framework</a>
</p>
<div id="releases">
<div class="release">
<h1>
Release Notes for Ext JS 4.0.7
</h1>
<p class="notes">
Release Date: October 19, 2011<br>
Version Number: 4.0.7
</p>
<h2>
Bugs Fixed
</h2>
<ul>
<li>Grid
<ul>
<li>[EXTJSIV-2023] - Failed test: Verify the data in the grid columns when user resize the columns and
click on next navigation button continously
</li>
<li>[EXTJSIV-2471] - "Group by this field" in Remote Summary Grid gives JS error
</li>
<li>[EXTJSIV-3326] - Ext.grid.View docs for stripeRows says the default is "false" but it's really
"true"
</li>
<li>[EXTJSIV-3469] - Ext.grid.plugin.CellEditing beforeedit event is fired with incorrect parameters
</li>
<li>[EXTJSIV-3492] - Form grid access examples has incorrect columns size on IE7 and IE6
</li>
<li>[EXTJSIV-3574] - Using Ext.grid.RowNumberer's xtype incorrectly sets the columns width
</li>
<li>[EXTJSIV-3588] - Vertical Scroll Bar Disappears in Locking Grid
</li>
<li>[EXTJSIV-3750] - Hidden columns cause header misalignment
</li>
<li>[EXTJSIV-3777] - Bottom rows missing on buffered grid when page size and record count are close in
size
</li>
<li>[EXTJSIV-3903] - Grid Scrolling does not work when setting the viewConfig.cls property
</li>
<li>[EXTJSIV-3908] - Grid LoadMask fails to disappear after store load when there is more than 1 grid on
the page
</li>
<li>[EXTJSIV-3912] - AbstractView.onItemDeselect can sometimes cause an exception if the record node is
no longer rendered
</li>
<li>[EXTJSIV-3983] - Initially hidden columns don't work with column grouping
</li>
<li>[EXTJSIV-4017] - Mouse scrolling on a grid scrolls both horizontally and vertically
</li>
<li>[EXTJSIV-4041] - Locking grid doesn't substract width of hidden locked columns
</li>
<li>[EXTJSIV-4044] - Instantiating grids at the wrong time causes scroll bars to silently disappear
</li>
<li>[EXTJSIV-4064] - TreeViewDragDrop doesn't clean up after itself
</li>
<li>[EXTJSIV-4068] - Ext.grid.column.Action doesn't prefix actionIdRe
</li>
<li>[EXTJSIV-4075] - Menu icon missing in Grouping Grid
</li>
<li>[EXTJSIV-4130] - LoadMask does not get removed from grid that is on inactive tab
</li>
<li>[EXTJSIV-4145] - The gridscroller doesn't destroy when the grid destroyed
</li>
<li>[EXTJSIV-4203] - Tree nodes disappear and can't be brought back</li>
</ul>
</li>
<li>Panel / Window
<ul>
<li>[EXTJSIV-3968] - autoDestroy parameter of Panel.removeDocked() is not optional
</li>
<li>[EXTJSIV-3926] - Ext.window.Window adds close tools on each use / won't close on ESC key
closable:true
</li>
<li>[EXTJSIV-3498] - setting hidden configuration parameter to true while collapsed is set to true gives
error on render
</li>
<li>[EXTJSIV-4006] - collapsed panel will not expand
</li>
<li>[EXTJSIV-4050] - Accordion fires expand/collapse events to early
</li>
<li>[EXTJSIV-4051] - activeOnTop not implemented in Accordion
</li>
<li>[EXTJSIV-4209] - accordion grid panels that scroll vertically have a blank space on the right
</li>
<li>[EXTJSIV-4239] - initially collapsed panels without a fixed width are too wide</li>
</ul>
</li>
<li>Data
<ul>
<li>[EXTJSIV-2536] - store.removeAll() does not remove grid.verticalScroller
</li>
<li>[EXTJSIV-3575] - TreeStore doesn't clear dirty flag on updated record
</li>
<li>[EXTJSIV-3705] - Store#loadData modifes data array passed into the method
</li>
<li>[EXTJSIV-3988] - Subtle bug in Json Reader forces server to enclose single record in array
</li>
<li>[EXTJSIV-4007] - Ext-data-Store.loadData change param type: [object, object] changes to [model, model]
</li>
<li>[EXTJSIV-4026] - Ext.data.Store.indexOfId does not work, it returns -1 for valid ids.
</li>
<li>[EXTJSIV-4028] - Ext.util.Filter with property and value=null causes error
</li>
<li>[EXTJSIV-4042] - TreeStore ignores autoLoad: false
</li>
<li>[EXTJSIV-4043] - node.removeAll() leaves childnodes in the NodeHash
</li>
<li>[EXTJSIV-4062] - Manipulating a new record fails
</li>
<li>[EXTJSIV-4078] - Ext.data.Connection.isLoading() always returns false, with no parameter
</li>
</ul>
</li>
<li>Forms
<ul>
<li>[EXTJSIV-3035] - ComboBox submit the wrong content
</li>
<li>[EXTJSIV-3298] - combobox setValue doesn't as expected
</li>
<li>[EXTJSIV-3314] - Hidden field is always dirty
</li>
<li>[EXTJSIV-3373] - Multiple classes in field's fieldCls causes JS error
</li>
<li>[EXTJSIV-3405] - getFieldValues in the compat layer is marked as deprecated but is not deprecated.
</li>
<li>[EXTJSIV-3444] - KeyMap does only accept keycodes, not characters
</li>
<li>[EXTJSIV-3916] - Ext.form.field.File style missing from my-ext-theme.scss
</li>
<li>[EXTJSIV-3917] - RadioGroup setValue is unable to handle boolean true/false
</li>
<li>[EXTJSIV-3923] - formBind no longer functions
</li>
<li>[EXTJSIV-3982] - Datepicker showmonth picker problem
</li>
<li>[EXTJSIV-3996] - IE8 Windowed combo field does not gain focus if tooltip is visible
</li>
<li>[EXTJSIV-3997] - Upload Filefield (buttonOnly) in Toolbar: not rendered like other buttons
</li>
<li>[EXTJSIV-4003] - Grid row editor shows hidden fields of grid - it should not show a hidden field
</li>
<li>[EXTJSIV-4027] - Ext.picker.Time calls new Date(...) with non-standard parameter
</li>
<li>[EXTJSIV-4063] - Form tries to validate field that doesn't exist
</li>
<li>[EXTJSIV-4079] - Ext.form.field.Date do not send post with empty value
</li>
<li>[EXTJSIV-2498] - Ext.picker.Color should allow its renderTpl to be overridden
</li>
<li>[EXTJSIV-3910] - fieldset checkboxToggle - add inputValue and uncheckedValue</li>
</ul>
</li>
<li>Examples
<ul>
<li>[EXTJSIV-3745] - Theme viewer - Duplicate Check box is displayed in the Window panel (Plain Field set) when
click on
expand/collapse button.
</li>
<li>[EXTJSIV-3692] - Displaying java script error while user trying to search with special characters in live
search
grid.
</li>
<li>[EXTJSIV-1152] - No animation when clicking on the multi-line prompt in the Window example
</li>
<li>[EXTJSIV-3890] - Charts - Complex Dashboard -Displaying JS error upon increasing the field values under the
company
details
</li>
<li>[EXTJSIV-3891] - Drag and Drop - Displaying JS error upon drag the date field into price column
</li>
<li>[EXTJSIV-3943] - Keyboard Feed Viewer - Highlighted color is not displaying correctly in IE 6
</li>
<li>[EXTJSIV-3946] - Forms - Binding a grid to a form - Missing Horizontal and Vertical Scroll bars in IE 6.
</li>
<li>[EXTJSIV-3978] - ComponentDragger exception when Window has nothing rendered in the header
</li>
<li>[EXTJSIV-3992] - Layout Manager : VBox Layout - Displaying JS error while minimizing the browser after
selecting
"Flex :Even/Align :Center" button
</li>
<li>[EXTJSIV-4082] - Portal Demo Displaying JS Error when click on Expand / Collapse button in Navigation /
Setting
accordions
</li>
<li>[EXTJSIV-4083] - Direct Form - Displaying JS Error when click on Expand / Collapse button in Basic
information /
Phone Numbers /Location Information accordion windows
</li>
<li>[EXTJSIV-4084] - Feed Viewer - Displaying JS Error when click on Cancel button in the add feed pop-up window
</li>
<li>[EXTJSIV-4112] - Webdesktop : Displaying JS error upon clicking "OK" & "Cancel " buttons in change settings
menu.
</li>
<li>[EXTJSIV-4114] - Ajax with XML Forms : [IE 6.0] - Displaying JS error upon clicking on "Load" & "Submit"
buttons in
XML forms.
</li>
<li>[EXTJSIV-4169] - Desktop example windows open minimized to the task bar; cannot be opened
</li>
<li>[EXTJSIV-4254] - Resizable Sencha Logo - Sencha Logo is not resizing while trying to resize from any
side/corner of
the component in IE 8 & IE 7.
</li>
<li>[EXTJSIV-4256] - Draggable Tiger Components - Draggable Tiger image is partially visible and complete image
is not
displaying in IE 8 & IE 7
</li>
<li>[EXTJSIV-4259] - Ext JS 3 & 4 on one Page - By default four square colored small boxes are displaying in the
main
Page
</li>
<li>[EXTJSIV-4269] - Line Chart - Chart is not displaying after disabling all the legend items and then
maximizing the
chart
</li>
</ul>
</li>
<li>Tabs
<ul>
<li>[EXTJSIV-3748] - LoadMask on a Tab stays visible even if we switch tabs.
</li>
<li>[EXTJSIV-3627] - Ext.tab.Tab setIconCls not working properly
</li>
<li>[EXTJSIV-3904] - Error when closing tabs created dynamically
</li>
<li>[EXTJSIV-4065] - Remove + add tabs to tabpanel only works with one tab</li>
</ul>
</li>
<li>MessageBox
<ul>
<li>[EXTJSIV-3779] - Message Box Dialog - Page is grayed out and not allowed to update the page when quickly
double-clicking on Icon Show button.
</li>
<li>[EXTJSIV-3560] - API Docs for Ext.window.MessageBox.show() example broken as of 4.0.2a. Should use
Ext.Msg.OKCANCEL
instead of Ext.window.MessageBox.OKCANCEL
</li>
<li>[EXTJSIV-1159] - No animation on progress bar
</li>
<li>[EXTJSIV-3909] - Ext.MessageBox has an incorrect translation
</li>
<li>[EXTJSIV-4037] - ProgressBar in a toolbar does not update progress when hidden</li>
</ul>
</li>
<li>Charts
<ul>
<li>[EXTJSIV-3914] - Ext.chart.axis Title bug
</li>
<li>[EXTJSIV-3915] - Pie Chart rendering bug
</li>
<li>[EXTJSIV-4025] - Charting Time Axis with a Column Series is misaligned
</li>
<li>[EXTJSIV-4060] - Line Chart doesn't show labels</li>
</ul>
</li>
<li>General
<ul>
<li>[EXTJSIV-3366] - The autoRender Component configuration does not work as documented.
</li>
<li>[EXTJSIV-3707] - Fix issue with event bubbling
</li>
<li>[EXTJSIV-3459] - Ext.fx.Anim throws 'Ext.fx.cubicBezier is not a function'
</li>
<li>[EXTJSIV-3894] - Setting the Ext.BLANK_IMAGE_URL value still causes s.gif to be loaded from
www.sencha.com in
IE6/IE7 causing a security warning
</li>
<li>[EXTJSIV-3900] - Menu uses BLANK_IMAGE_URL too early
</li>
<li>[EXTJSIV-3913] - Toolbar overflow button icon
</li>
<li>[EXTJSIV-3927] - Ext.Layer.setOpacity does not affect associated shadow
</li>
<li>[EXTJSIV-3942] - If you do not supply a center region to a border layout, you get a cryptic error
</li>
<li>[EXTJSIV-4023] - Extra and missing borders in various components
</li>
<li>[EXTJSIV-4036] - Colormenu select event fires twice on click/select
</li>
<li>[EXTJSIV-4049] - Regular expression references wrong class name in sandbox mode in Action.js
</li>
<li>[EXTJSIV-4055] - Ext.util.HashMap add method not counting length correctly when replacing
</li>
<li>[EXTJSIV-4074] - Ext.Date.defaultFormat is used at define time in Ext.grid.column.Date
</li>
<li>[EXTJSIV-4200] - LoadMask with { useMsg: false } no longer suppresses message element
</li>
<li>[EXTJSIV-4230] - Ext.destroyMembers is not called correctly</li>
</ul>
</li>
<li>Buttons
<ul>
<li>[EXTJSIV-3736] - In IE quirks mode, a menu containing a ButtonGroup attains an incorrect width.
</li>
<li>[EXTJSIV-3720] - The button icons are not centered in quirk mode
</li>
<li>[EXTJSIV-4057] - allowDepress doesn't work on splitbutton
</li>
<li>[EXTJSIV-4071] - Splitbutton w/ tooltip won't open menu
</li>
<li>[EXTJSIV-4072] - Open button menu suppresses the focus event of an unrelated field
</li>
<li>[EXTJSIV-4272] - button[enableToggle] must NOT still be pressed after being clicked twice
</li>
</ul>
</li>
</ul>
</div>
<div class="release">
<h1>
Release Notes for Ext JS 4.0.6
</h1>
<p class="notes">
Release Date: August 30, 2011<br>
Version Number: 4.0.6
</p>
<h2>
Bugs Fixed
</h2>
<ul>
<li>Grid
<ul>
<li>[EXTJSIV-2231] - Fixed a styling bug with grids with rowbody that would cause columns to lay out
incorrectly with custom CSS
</li>
<li>[EXTJSIV-3246] - Fixed a bug where specifying a single grid Feature would fail as it expects an
array
</li>
<li>[EXTJSIV-3415] - Fixed a bug where right clicking would incorrectly deselect all selected nodes
(affects Windows machines only)
</li>
<li>[EXTJSIV-3466] - Fixed a bug where selection does not work with grid row editor and Firefox 5 / IE 9
</li>
<li>[EXTJSIV-3586] - Grid header drag resizes wrong header</li>
<li>[EXTJSIV-3591] - Checkbox column not re-added after grid reconfigure</li>
<li>[EXTJSIV-3605] - Fixed a JavaScript error when user mouse hover on the first column in the grid.
(Grid plugins example)
</li>
<li>[EXTJSIV-3642] - Scrollbars don't appear when a custom renderer increases the height of the rows in
a tree
</li>
<li>[EXTJSIV-3644] - Column lines are not displaying properly in the grid.</li>
<li>[EXTJSIV-3645] - Summary Grid example -Vertical scroll bar is disappearing when Toggle Summary
button is clicked.
</li>
<li>[EXTJSIV-3658] - Paging scroller doesn't function with up/page up</li>
<li>[EXTJSIV-3660] - hideGroupedHeader does not work</li>
<li>[EXTJSIV-3661] - Grouping doesn't remember selections</li>
<li>[EXTJSIV-3668] - Loading data doesn't invoke grid's vertical scrollbar</li>
<li>[EXTJSIV-3715] - Horizontal scrollbar doesn't show on empty grid</li>
<li>[EXTJSIV-3717] - Fixed a bad scrollbar in dd/dnd_grid_to_grid.html</li>
<li>[EXTJSIV-3725] - Grid with locked columns not syncing header heights</li>
<li>[EXTJSIV-3732] - Property Grid - Page is not loaded properly. Empty space is created in between
column header and rows in the grid.
</li>
<li>[EXTJSIV-3733] - Drag and Drop : Grid to From Dnd - Horizontal scroll bar is not displaying after
increasing the column size in data grid.
</li>
<li>[EXTJSIV-3753] - Locked grid with checkbox selection model inserts header twice</li>
<li>[EXTJSIV-3754] - Cannot create locked grid with all unlocked columns</li>
<li>[EXTJSIV-3784] - Auto height grid.Panel first header cell is blank; Fixed with doComponentLayout
</li>
<li>[EXTJSIV-3785] - Fixed height grid.Panel doesn't show scrollbars when resizing the columns; Fixed
with doComponentLayout
</li>
<li>[EXTJSIV-3786] - Fixed height grid.Panel bottom scrollbar covers last row; cannot scroll it
completely into view
</li>
<li>[EXTJSIV-3514] - Failed test: Verify horizontal and Vertical scrolling in checkbox selection Grid
plugin
</li>
</ul>
</li>
<li>Form
<ul>
<li>[EXTJSIV-3490] - Fixed a bug where Slider width is too narrow on Safari 3.2</li>
<li>[EXTJSIV-3491] - Some form examples don't render correctly on safari 3.2</li>
<li>[EXTJSIV-3648] - FileField's reset does not reset the textual input field.</li>
<li>[EXTJSIV-3669] - Unable to reselect a combo value</li>
<li>[EXTJSIV-3673] - Fieldset title are not rendered with firefox 3.6.17</li>
<li>[EXTJSIV-3678] - Fixed a bug where Checkbox's checkChange event didn't fire using keyboard</li>
<li>[EXTJSIV-3713] - Fixed a bug where BoundList doesn't allow custom itemCls</li>
<li>[EXTJSIV-3759] - Slider destroy code incorrect</li>
<li>[EXTJSIV-3774] - Editor bug -- unconditional use of field.inputEl</li>
<li>[EXTJSIV-3597] - Can't enter spaces into fields inside menus</li>
</ul>
</li>
<li>Charts and Drawing
<ul>
<li>[EXTJSIV-933] - Axis title "Number of Hits" lacks padding with Firefox 3.5 and 3.0</li>
<li>[EXTJSIV-3647] - Mixed charts - Bar graph is crossing the maximum limit of Y -Axis (Number of Hits)
when click on the reload button couple of times.
</li>
</ul>
</li>
<li>Data
<ul>
<li>[EXTJSIV-3325] - Fixed a bug where the 'presence' validation would incorrectly return false for
numeric zero values
</li>
<li>[EXTJSIV-3522] - [4.0.2] beginEdit leads to 'update' event not fired on Store</li>
<li>[EXTJSIV-3593] - Fixed a bug with record.validate() and length validator when value is null</li>
<li>[EXTJSIV-3662] - The "isLoading()" method of Ext.data.TreeStore returns true even after loading has
completed
</li>
<li>[EXTJSIV-3757] - Ext.data.Store modifies the original config object passed in</li>
</ul>
</li>
<li>General
<ul>
<li>[EXTJSIV-459] - Improved docs for maskRe, stripCharsRe, regex, and regexText</li>
<li>[EXTJSIV-3037] - Fixed a bug where an error would be thrown if a Tab's width is greater than the
configured maxTabWidth
</li>
<li>[EXTJSIV-3460] - Checkboxes now correctly remove themselves from the CheckboxManager when destroyed
</li>
<li>[EXTJSIV-3474] - Fixed sandboxing bugs where Fieldset, TriggerField and Menu would not be correctly
wrapped in CSS scoping divs
</li>
<li>[EXTJSIV-3537] - Ext.destroyMembers was being called incorrectly in some components</li>
<li>[EXTJSIV-3598] - Unable to select text in field in menu in FF</li>
<li>[EXTJSIV-3638] - Fixed a number of issues with Load Masks</li>
<li>[EXTJSIV-3646] - Complex Dashboard - Company Detail caption is not displaying in FF 3.6 browser.
</li>
<li>[EXTJSIV-3674] - Custom Grid Filters Example was throwing a JavaScript error</li>
<li>[EXTJSIV-3718] - There is no padding between fields in statusbar/statusbar-advanced.html</li>
<li>[EXTJSIV-3724] - Accordion layout does not properly hide toolbar when button is clicked to
expand/collapse its parent
</li>
<li>[EXTJSIV-3726] - Ensure owning Container is laid out after an autosized Component is laid out.</li>
<li>[EXTJSIV-3740] - Portal Demo - Displaying Java script error when click on Legend items in the Stock
Portlets
</li>
<li>[EXTJSIV-3768] - variable $toolbar-border-color was ignored</li>
</ul>
</li>
<li>Sandbox
<ul>
<li>[EXTJSIV-3681] - Vertical panel header text color incorrect in sandbox mode</li>
<li>[EXTJSIV-3683] - Window resize not visible in sandbox mode</li>
<li>[EXTJSIV-3688] - Can't vertically resize window in sandbox mode</li>
<li>[EXTJSIV-3689] - Window constrain fails in sandbox mode</li>
<li>[EXTJSIV-3695] - Grid's AbstractSummary feature had been hard-coding base CSS prefix so sandboxing
would not work
</li>
<li>[EXTJSIV-3702] - Fixed a bug where the JSONP callbacks would use the normal Ext namespace instead of
the sandbox namespace in sandbox mode
</li>
<li>[EXTJSIV-3714] - Tooltip positioning incorrect in sandbox mode</li>
</ul>
</li>
</ul>
</div>
<div class="release">
<h1>
Release Notes for Ext JS 4.0.5
</h1>
<p class="notes">
Release Date: July 24, 2011<br>
Version Number: 4.0.5
</p>
<h2>
Bugs Fixed
</h2>
<ul>
<li>Grid
<ul>
<li>[EXTJSIV-2442] - Grouped Grid Header does not handle flex column show/hide well (layout issues)</li>
<li>[EXTJSIV-2464] - Not possible to access the properties of the columns (locked=true)</li>
<li>[EXTJSIV-2471] - "Group by this field" in Remote Summary Grid gives JS error</li>
<li>[EXTJSIV-2543] - Cell Editing, intra-row change of focus.</li>
<li>[EXTJSIV-2572] - Grid column header menu trigger gets stuck when there's no header menu</li>
<li>[EXTJSIV-2573] - Ext.grid.plugin.DragDrop should honor disabled flag</li>
<li>[EXTJSIV-3377] - Grid deferRowRender causes defer shim to be set on store listeners</li>
<li>[EXTJSIV-3457] - Grid needs a viewready event which fires when the DOM rows become available.</li>
<li>[EXTJSIV-3485] - Locking grid example is throwing an Hard JS error "Cannot call method 'removeCls'
of undefined"
</li>
<li>[EXTJSIV-3489] - Grid layout is incorrect in form dashboard example</li>
<li>[EXTJSIV-3492] - Form grid access examples has incorrect columns size on IE7 and IE6</li>
<li>[EXTJSIV-3494] - Grid mask in custom-form example size is not equal to grid body</li>
<li>[EXTJSIV-3562] - grid/form-grid.html must select the first row on page load</li>
</ul>
</li>
<li>Window
<ul>
<li>[EXTJSIV-1732] - Progress Dialog window locked up if you reopen it after closing it</li>
<li>[EXTJSIV-1994] - Strange Ext.window.Window rendering issue in WebKit browsers when placed over Java
applet
</li>
<li>[EXTJSIV-2511] - Ghosted windows should not be stateful</li>
</ul>
</li>
<li>Form
<ul>
<li>[EXTJSIV-2425] - HTMLEditor corrupted when changing background color of selection</li>
<li>[EXTJSIV-3035] - [4.0.1]ComboBox submit the wrong content</li>
<li>[EXTJSIV-3298] - [4.0.2] combobox setValue doesn't as expected</li>
<li>[EXTJSIV-3330] - Setting the editable combobox to a value that is not in the list results in empty
val
</li>
<li>[EXTJSIV-3413] - Highlight during trigger click</li>
<li>[EXTJSIV-3414] - validateedit does not have new values</li>
<li>[EXTJSIV-3418] - No way to get reference to field.Picker from BoundList</li>
<li>[EXTJSIV-3495] - The Loading Mask in custom form example is not constraint to grid body.</li>
<li>[EXTJSIV-3520] - RowExpander doesn't work on ExtJs 4.0.2 (ext-all-debug.js) but worked on
(ext-all.js)
</li>
<li>[EXTJSIV-3561] - form/combos.html example: combobox unobtrusive select transformation doesn't work
</li>
</ul>
</li>
<li>Tree
<ul>
<li>[EXTJSIV-2197] - Failed test: Verify the tree panel when user click's on Expand All button.</li>
<li>[EXTJSIV-2200] - Failed test: Verify the panel after user click's on Tree expander button</li>
<li>[EXTJSIV-2204] - Dblclick expand/collapse in check-tree example causes JS error</li>
<li>[EXTJSIV-2276] - Collapsing a tree panel w/collapsed nodes throws JS error</li>
<li>[EXTJSIV-3362] - expandPath fails when a node is already loading</li>
</ul>
</li>
<li>Layouts
<ul>
<li>[EXTJSIV-2431] - Accordion is missing a border when collapsed</li>
<li>[EXTJSIV-2547] - Child components not rendered.sized in initially collapsed, uncontained Panel.</li>
<li>[EXTJSIV-3295] - 4.0.2 only - layout fit grid scrollbar when used does not scroll content</li>
<li>[EXTJSIV-3410] - Collapsing/expanding of flexed panels doesn't work</li>
<li>[EXTJSIV-3541] - Cannot hide collapsed regions in a border layout</li>
</ul>
</li>
<li>Charts and Drawing
<ul>
<li>[EXTJSIV-3045] - Add check in DrawComponent to ensure we have a valid surface before continuing
execution
</li>
<li>[EXTJSIV-3456] - Printing legends in IE causes orange rectangles appear.</li>
</ul>
</li>
<li>Data
<ul>
<li>[EXTJSIV-1897] - Ext.data.Store buffered issue - error thrown if records are not available on the
server
</li>
<li>[EXTJSIV-3351] - processResponse is wrong in Ext.data.proxy.Server</li>
<li>[EXTJSIV-3464] - Direct exception events don't fire on the provider.</li>
<li>[EXTJSIV-3471] - Boolean field data type is not being converted properly.</li>
<li>[EXTJSIV-3540] - indexOfTotal fails if the index is 0</li>
</ul>
</li>
<li>General
<ul>
<li>[EXTJSIV-1638] - ComboBox should select the configured value upon first load of the Store.</li>
<li>[EXTJSIV-2405] - Docked items added after render don't render correctly</li>
<li>[EXTJSIV-2434] - Infinite scrolling is buggy on safari 3.X (the grid doesn't render the first rows)
</li>
<li>[EXTJSIV-2549] - Collapsed Tabpanel misses the bottom border</li>
<li>[EXTJSIV-2565] - A button with a menu defined is only showing the menu when the mouse is over the
arrow but in 3.x the menu showed as soon as the mouse was anywhere over the button
</li>
<li>[EXTJSIV-2577] - Class aliases that use a period as a separator break DOM/CQ selection</li>
<li>[EXTJSIV-2628] - Ext.tab.Bar - minTabWidth has no effect</li>
<li>[EXTJSIV-3284] - data-qtitle not consistently rendered.</li>
<li>[EXTJSIV-3327] - [4.0.2] Plugins instantiated too early in AbstractComponent</li>
<li>[EXTJSIV-3412] - Toolbar with overflow doesn't include menu in refItems</li>
<li>[EXTJSIV-3453] - AbstractComponent calls constructPlugins too early</li>
<li>[EXTJSIV-3470] - scrollByDeltaX() incorrectly using the vertical scroller</li>
<li>[EXTJSIV-3483] - Some examples renders a blank page</li>
<li>[EXTJSIV-3486] - Animated DataView throw and hard js error "Cannot call method animate of null"</li>
<li>[EXTJSIV-3487] - Animated DataView example throw and hard js error "Cannot call method animate of
null"
</li>
<li>[EXTJSIV-3488] - MultiSelect and Key-Feed-Viewer examples are throwing an hard js error 'Cannot call
method addCls of null'
</li>
<li>[EXTJSIV-3490] - Sliders width is too narrow on Safari 3.2</li>
<li>[EXTJSIV-3491] - Some form examples don't render correctly on safari 3.2</li>
<li>[EXTJSIV-3496] - The theme index example is automatically scrolled on IE.</li>
<li>[EXTJSIV-3539] - LoadMask beforeLoad causes a crash</li>
</ul>
</li>
</ul>
<h2>
Improvements
</h2>
<ul>
<li>[EXTJSIV-1999] - Improved Themes Example Performance</li>
<li>[EXTJSIV-3323] - [4.0] Ext.tab.Panel history feature missing</li>
<li>[EXTJSIV-1907] - Refactored the renderSelectors functionality to use local element IDs instead of CSS
selectors so that render selector performance is improved
</li>
<li>[EXTJSIV-2575] - Ext core class namespaces made consistent in the API docs</li>
<li>[EXTJSIV-1887] - Tree now supports horizontal scrolling</li>
<li>[EXTJSIV-2436] - dynamic_form field alignment</li>
</ul>
</div>
<div class="release">
<h1>
Release Notes for Ext JS 4.0.4
</h1>
<p class="notes">
Release Date: June 29, 2011<br>
Version Number: 4.0.4
</p>
<h2>
Bugs Fixed
</h2>
<ul>
<li>Grid
<ul>
<li>[EXTJSIV-1032] - Grid CheckColumn 1px to left in header</li>
<li>[EXTJSIV-2122] - Cell Editing doesn't allow for custom autoSize</li>
<li>[EXTJSIV-2124] - Grid: RowExpander Plugin adds additional columns</li>
<li>[EXTJSIV-2251] - Action Column doesn't allow alt text per action</li>
<li>[EXTJSIV-2351] - Implement the more intuitive resizable: false on grid Columns. fixed is deprecated.
</li>
<li>[EXTJSIV-2381] - grid/array-grid.html Actions icons should be moved up of 1 pixel</li>
<li>[EXTJSIV-2460] - Regression in Sorting buffered Grid (First row is chopped off)</li>
<li>[EXTJSIV-2428] - Unable to set cell editor dynamically</li>
<li>[EXTJSIV-2466] - Buffered scrolling broken in latest Chrome</li>
<li>[EXTJSIV-2496] - Grid crashes when removing it from a tab panel</li>
<li>[EXTJSIV-2501] - Grid applyState smashes column minWidth and has JS errors for locking grids</li>
<li>[EXTJSIV-2564] - Grid missing horizontal scrollbar</li>
<li>[EXTJSIV-2574] - $grid-row-cell-background variable unused</li>
<li>[EXTJSIV-3029] - Reconfigure fails when no columns are passed</li>
<li>[EXTJSIV-3299] - (IE7) Grid body alignement is incorrect in form-grid example</li>
<li>[EXTJSIV-3309] - Grid reconfigure breaks columns layout</li>
<li>[EXTJSIV-3363] - Grid header is too narrow on IE6/IE7/IE9</li>
</ul>
</li>
<li>Tree
<ul>
<li>[EXTJSIV-1887] - Tree does not allow horizontal scrolling</li>
<li>[EXTJSIV-2207] - Dblclick expand/collapse in XML Tree example causes JS error</li>
<li>[EXTJSIV-2276] - Collapsing a tree panel w/collapsed nodes throws JS error</li>
<li>[EXTJSIV-2517] - getNode needs a rendered check</li>
<li>[EXTJSIV-2518] - NodeInterface missing getPath</li>
</ul>
</li>
<li>Forms
<ul>
<li>[EXTJSIV-2104] - Fieldset display strange in IE</li>
<li>[EXTJSIV-2130] - Specify labelCls messes up height on TextField</li>
<li>[EXTJSIV-2165] - JS error when selecting item in combo box</li>
<li>[EXTJSIV-2167] - JS error when selecting multiple items in combo box</li>
<li>[EXTJSIV-2168] - JS error when selecting item in combo box</li>
<li>[EXTJSIV-2169] - Cannot select item in combo after entering invalid text</li>
<li>[EXTJSIV-2210] - Failed test: Verify the Submit button in the xml form</li>
<li>[EXTJSIV-2338] - Checkbox group/checkbox in fieldset too low</li>
<li>[EXTJSIV-2349] - examples/form/form-grid-access.html loses its description text</li>
<li>[EXTJSIV-2366] - ComboBox should have getStore method</li>
<li>[EXTJSIV-2380] - form/checkout.html The disabled Street Address field is lighter than other fields
</li>
<li>[EXTJSIV-2459] - Checkbox select gives commitFn is not a function</li>
<li>[EXTJSIV-2470] - Combo doesn't send queryParam on page change</li>
<li>[EXTJSIV-2522] - Field crashes if destroyed when focused</li>
<li>[EXTJSIV-2523] - DatePicker has undefined var</li>
<li>[EXTJSIV-2527] - File field crashes when reset on unrendered field.</li>
<li>[EXTJSIV-2529] - Combo does not adjust list height to fit viewport</li>
<li>[EXTJSIV-2531] - Slider crashes when calling setMinValue/setMaxValue when it's not rendered</li>
<li>[EXTJSIV-2546] - TextField filterKeys not applied when using alt + gr key</li>
<li>[EXTJSIV-2553] - The "formBind" config does not work for buttons defined in a Form Panel's "buttons"
config
</li>
<li>[EXTJSIV-2499] - Date picker month selector animation issues (including runtime error)</li>
<li>[EXTJSIV-3028] - Combo in editor always tries to force selection</li>
</ul>
</li>
<li>Tabs
<ul>
<li>[EXTJSIV-1034] - When there's only one tab in a TabPanel, and it's active by default, the tab
selector in the tab strip is not set to the active state.
</li>
<li>[EXTJSIV-2542] - Ext.tab.Panel styling issues</li>
<li>[EXTJSIV-3300] - TabBar background color is incorrect (no gradients) in all browsers except chrome
and firefox
</li>
</ul>
</li>
<li>Panel
<ul>
<li>[EXTJSIV-2506] - Panel header should set overflow hidden for text</li>
<li>[EXTJSIV-3311] - Collapsed panel layout error inside a viewport</li>
</ul>
</li>
<li>Toolbars and Buttons
<ul>
<li>[EXTJSIV-2185] - Add textAlign cfg to Ext.button.Button</li>
<li>[EXTJSIV-2387] - toolbar/toolbars example, the title of ButtonGroup is not centered anymore</li>
<li>[EXTJSIV-2475] - Button icons are not well aligned on ie6 only</li>
<li>[EXTJSIV-2513] - Scrolling menu in Basic Toolbar example fails</li>
<li>[EXTJSIV-2544] - ButtonGroup renders blue with gray style in Ext 4.0.2</li>
</ul>
</li>
<li>Window
<ul>
<li>[EXTJSIV-1667] - Improper Resize Handles Position / Offset in IEs</li>
<li>[EXTJSIV-1732] - Progress Dialog window locking</li>
<li>[EXTJSIV-2193] - Failed test: Verify Window resize using Drag and Drop</li>
<li>[EXTJSIV-2505] - When you set modal:true on a window and renderTo it to a panel, it masks the whole
body, not the panel
</li>
</ul>
</li>
<li>Charts
<ul>
<li>[EXTJSIV-2508] - Chart doesn't support not being passed a config object</li>
<li>[EXTJSIV-2521] - Destroying unrendered chart causes error</li>
</ul>
</li>
<li>Miscellaneous
<ul>
<li>[EXTJSIV-1066] - Calling Container.add() with a floating component does not render that component
</li>
<li>[EXTJSIV-1086] - Theme Example: Progress Bar's Right Pixel Border changes color while animating</li>
<li>[EXTJSIV-1659] - Text hidden when column is short</li>
<li>[EXTJSIV-2074] - Failed test: Verify that East panel expands when clicked on the expand button at
left side of the center panel
</li>
<li>[EXTJSIV-2101] - Shadows not shown on certain floating items such as Menu and ComboBox list.</li>
<li>[EXTJSIV-2132] - Expand sets height before anim on Panel using VBoxLayout</li>
<li>[EXTJSIV-2192] - Failed test: Verify pane resize using resize bar</li>
<li>[EXTJSIV-2226] - Failed test: Verify the user is able to select option from options drop down under
ItemSelectorTest table
</li>
<li>[EXTJSIV-2252] - Need to fix DomQuery for non document rooted queries</li>
<li>[EXTJSIV-2284] - Web Desktop, System Status Window is slow on IE (causes script warning)</li>
<li>[EXTJSIV-2332] - Fix build warning for nested-loading MVC app</li>
<li>[EXTJSIV-2391] - Ext.core.DomHelper should be aliased to Ext.DomHelper for backwards compat</li>
<li>[EXTJSIV-2394] - Center region of border layout should have overflow:auto</li>
<li>[EXTJSIV-2411] - Format.number can return -0</li>
<li>[EXTJSIV-2500] - Gray theme has not styled button group</li>
<li>[EXTJSIV-2507] - reader.Array doesn't work with a 0 mapping.</li>
<li>[EXTJSIV-2509] - Tool ignores tooltip option</li>
<li>[EXTJSIV-2510] - Button tooltipType title doesn't work</li>
<li>[EXTJSIV-2520] - Menu strict typo</li>
<li>[EXTJSIV-2519] - Store should give a warning if model isn't defined</li>
<li>[EXTJSIV-2526] - AbstractContainer, child/down selector should be optional</li>
<li>[EXTJSIV-2530] - Show event fires too early for animated component</li>
<li>[EXTJSIV-2532] - Store does not consistently pass all event parameters to beforeload event</li>
<li>[EXTJSIV-2537] - Box layout doesn't destroy innerCt</li>
<li>[EXTJSIV-2839] - Component destroy event fires too late</li>
<li>[EXTJSIV-3027] - Hidden tools get ghosted</li>
<li>[EXTJSIV-3310] - Accordion layout does not handle grid properly</li>
</ul>
</li>
</ul>
</div>
<div class="release">
<h1>
Release Notes for Ext JS 4.0.2
</h1>
<p class="notes">
Release Date: June 9, 2011<br>
Version Number: 4.0.2
</p>
<h2>
Bugs Fixed
</h2>
<ul>
<li>Grid
<ul>
<li>[EXTJSIV-864] - Grid filtering doesn't support specifying filters on feature</li>
<li>[EXTJSIV-1149] - Grouping Grid - text element in the group should be indented</li>
<li>[EXTJSIV-1715] - Row height gets modified while searching</li>
<li>[EXTJSIV-1720] - When rendering new buffered rows, row height changes, IE6/7</li>
<li>[EXTJSIV-1760] - Grid: enableColumnResize should prevent css indicator of showing resizable behavior</li>
<li>[EXTJSIV-1750] - PropertyGrid keyboard navigation</li>
<li>[EXTJSIV-1789] - Editing fails after reconfigure</li>
<li>[EXTJSIV-1806] - Grid with multi-select and DD deselects rows</li>
<li>[EXTJSIV-1810] - Unlocked columns don't align correctly in IE9</li>
<li>[EXTJSIV-1812] - beforeselect event not relayed to grid</li>
<li>[EXTJSIV-1874] - Grid Performance is too slow in IE</li>
<li>[EXTJSIV-1968] - Ext.table.Panel: enableColumnHide</li>
<li>[EXTJSIV-1934] - Hiding subcolumn causes width to display incorrectly</li>
<li>[EXTJSIV-1969] - IE 8 & 9: Ext.grid.plugin.RowEditing and PagingToolbar</li>
<li>[EXTJSIV-1971] - Javascript error during cell editing</li>
<li>[EXTJSIV-2061] - Grid vertical scrollbar is reset when when the grid panel is collapsed and then expanded
</li>
<li>[EXTJSIV-2062] - Call to grid.reconfigure on a rendered grid that initially has no columns configured
results in the first row being hidden behind the column headers if the grid does not contain enough data to
require scrollbars, different behavior with larger data set
</li>
<li>[EXTJSIV-1997] - Grid vertical scrollbar error</li>
<li>[EXTJSIV-2008] - Grid vscrollbar can double count height of hscrollbar</li>
<li>[EXTJSIV-2376] - Grid cells don't show modified state if initial value is falsey</li>
<li>[EXTJSIV-2379] - Property grid example is broken (no body rendered)</li>
<li>[EXTJSIV-2382] - In grid/binding example the scrollbar column has disappeared</li>
<li>[EXTJSIV-2383] - grid/grid-plugins.html throw an hard js error on ie6/7</li>
<li>[EXTJSIV-2384] - grid/group-header scrollbar is off by 4 pixels (only ie9)</li>
<li>[EXTJSIV-2372] - tree/xml-tree.html throw an hard js error</li>
<li>[EXTJSIV-2435] - Xml Tree does not show expand/collapse icons</li>
<li>[EXTJSIV-2373] - Row height is too small in direct/direct-grid.html</li>
<li>[EXTJSIV-2122] - Cell Editing doesn't allow for custom autoSize</li>
<li>[EXTJSIV-2248] - Grid Load performance</li>
<li>[EXTJSIV-2430] - RowExpander plugin unwanted padding on IE</li>
<li>[EXTJSIV-1868] - Cell Editing doesn't work on locked view</li>
<li>[EXTJSIV-2066] - Grid's horizontal scrollbar can get out of sync</li>
<li>[EXTJSIV-2244] - CheckboxModel's version of onSelectChange ignores suppressEvent parameter</li>
<li>[EXTJSIV-2131] - Can't use grouping summary indexes multiple times</li>
<li>[EXTJSIV-2466] - Buffered scrolling broken in latest Chrome</li>
</ul>
</li>
<li>Menu
<ul>
<li>[EXTJSIV-692] - Need to style menu in access theme</li>
</ul>
</li>
<li>Tree
<ul>
<li>[EXTJSIV-972] - Indentation in both upper/bottom border lines in tree beside the scrollbar</li>
<li>[EXTJSIV-1053] - IE6 tree quicktips look ugly</li>
<li>[EXTJSIV-1887] - Tree does not allow horizontal scrolling</li>
<li>[EXTJSIV-1933] - Tree crashes on expand</li>
<li>[EXTJSIV-2009] - NodeInterface should use a bool type for checked</li>
<li>[EXTJSIV-2001] - Expandable attribute ignored</li>
<li>[EXTJSIV-1883] - Need a way to veto node collapse/expand events</li>
<li>[EXTJSIV-2354] - TreePanel.selectPath does not work with custom separator</li>
</ul>
</li>
<li>Form
<ul>
<li>[EXTJSIV-1747] - IE Quirks : combo dropdown list is not aligned properly in Advanced Dataview example</li>
<li>[EXTJSIV-992] - IE9 strict vertical and horizontal scrollbar in HTMLEDITOR</li>
<li>[EXTJSIV-1073] - Date Picker styling</li>
<li>[EXTJSIV-1080] - Date Picker / Time picker</li>
<li>[EXTJSIV-1668] - TimeField should reserved custom entry on pressing Enter (after keyboard navigation)</li>
<li>[EXTJSIV-1753] - Disabled text in field labels does not display properly in IE6</li>
<li>[EXTJSIV-2010] - Combo fires change event twice when selecting a value</li>
<li>[EXTJSIV-2100] - TextArea emptyText incorrect color</li>
<li>[EXTJSIV-2436] - dynamic_form field alignment</li>
</ul>
</li>
<li>Container
<ul>
<li>[EXTJSIV-1066] - Calling Container.add() with a floating component does not render that component</li>
</ul>
</li>
<li>Misc
<ul>
<li>[EXTJSIV-1098] - Mini-collapse panel does not have a mouse over state</li>
<li>[EXTJSIV-1157] - Row editor had gradient background in 3.3, now has flat color</li>
<li>[EXTJSIV-1182] - High Contrast Theme Has Standard Contract Menus</li>
<li>[EXTJSIV-1202] - Icons of mixed sizes are unaligned</li>
<li>[EXTJSIV-1320] - Shadows in lower left/right corners, at times, looks too square.</li>
<li>[EXTJSIV-1472] - Black background in charting examples in quirks mode</li>
<li>[EXTJSIV-1473] - 2x larger font size in quirks mode versus strict for the spotlight example</li>
<li>[EXTJSIV-1553] - The qtip is clipped in the registration example</li>
<li>[EXTJSIV-1560] - Title artifact behind collapsed panel header</li>
<li>[EXTJSIV-1646] - Problem with relayout + floating</li>
<li>[EXTJSIV-1726] - Esc Key Handling is inconsistent between browsers</li>
<li>[EXTJSIV-1727] - Placing a date picker inside of a menu has a black border around the menu</li>
<li>[EXTJSIV-1734] - The background of the custom progress bar in progress bar example must be white.</li>
<li>[EXTJSIV-2055] - Compat layer throwing error with grid</li>
<li>[EXTJSIV-1729] - Tab icons cut off</li>
<li>[EXTJSIV-1746] - Restful Proxy example uses background-image w/PNG (bad for IE6) on buttons</li>
<li>[EXTJSIV-1793] - Sandboxing Ext3/Ext4 can cause id clashes</li>
<li>[EXTJSIV-1815] - Problem with discontinuous values</li>
<li>[EXTJSIV-1873] - Compat - tbar in grid appears under headers</li>
<li>[EXTJSIV-1884] - Proxy status repair goes behind window</li>
<li>[EXTJSIV-1928] - Paging toolbar in BoundList has double border</li>
<li>[EXTJSIV-1941] - body not scoped</li>
<li>[EXTJSIV-1965] - renderTpl used even when it doesn't exist</li>
<li>[EXTJSIV-1973] - HashMap keyFn not supported</li>
<li>[EXTJSIV-1990] - State doesn't allow stateId to be set in the prototype</li>
<li>[EXTJSIV-2003] - Missing btn mixin</li>
<li>[EXTJSIV-2004] - Frame ignores any ui</li>
<li>[EXTJSIV-2065] - Ext.Element#scrollTo broken when animate=true with grid view when store is reloaded</li>
<li>[EXTJSIV-2067] - DatePicker month/year selection cannot be done when showToday = false</li>
<li>[EXTJSIV-2089] - Memento class missing in built SDK</li>
<li>[EXTJSIV-2095] - 404 for tip-bg.gif file</li>
<li>[EXTJSIV-2099] - closeText not copied</li>
<li>[EXTJSIV-2129] - Set tpl config has no affect on ComboBox</li>
<li>[EXTJSIV-2249] - Ext.isObject fails with anything with a nodeType property</li>
<li>[EXTJSIV-2268] - Difficult/unintuitive to disable load mask on a grid/view</li>
<li>[EXTJSIV-2314] - selectRange doesn't cause UI to update</li>
<li>[EXTJSIV-2337] - Examples fonts and body padding are wrong in 4.0.2</li>
<li>[EXTJSIV-2349] - examples/form/form-grid-access.html loses its description text</li>
<li>[EXTJSIV-2385] - portal/portal.html throws a hard error on IE6 (only)</li>
<li>[EXTJSIV-2387] - toolbar/toolbars example, the title of ButtonGroup is not centered anymore</li>
<li>[EXTJSIV-2411] - Format.number can return -0</li>
<li>[EXTJSIV-2454] - Ext.Ajax not taking the XHR.status into consideration</li>
</ul>
</li>
<li>Examples
<ul>
<li>[EXTJSIV-1090] - Theme Example: "Display topics" only shows when hitting refresh</li>
<li>[EXTJSIV-1094] - Theme Example: Month Selectors in Date Picker do not have hover state</li>
<li>[EXTJSIV-1618] - Forum search example the combo list isn't positioned correctly with IE Quirks</li>
<li>[EXTJSIV-1168] - Status bar example - alignment of "loading" animation is not correct</li>
<li>[EXTJSIV-1313] - Forum Browser has 1px white border on inside right edge of the tree</li>
<li>[EXTJSIV-1189] - Forms example inside layout browser is inconsistent with 3.3</li>
<li>[EXTJSIV-1117] - Forum example missing search box on top right</li>
<li>[EXTJSIV-1124] - Feed viewer - cannot click on the body of left panel if it's minimized</li>
<li>[EXTJSIV-1133] - Paging grid example - text should be better spaced</li>
<li>[EXTJSIV-1137] - Paging grid example - disabled arrows on the bottom toolbar should be gray, not blue</li>
<li>[EXTJSIV-1140] - Portal example - setting icon is clipped</li>
<li>[EXTJSIV-1097] - Theme example - missing list view</li>
<li>[EXTJSIV-1099] - Theme example: Tab scroller - scroll arrows should not show active cursor if it's disabled
</li>
<li>[EXTJSIV-1101] - Theme example - grid panel does not have multiple pages</li>
<li>[EXTJSIV-1107] - Theme example - text field is missing color and highlight in toolbar</li>
<li>[EXTJSIV-1114] - Theme Browser: Column When Selected doesn't have a gradient</li>
<li>[EXTJSIV-1169] - Advanced status bar example - alignment is incorrect</li>
<li>[EXTJSIV-1696] - Desktop example - In notepad, scrolling appears</li>
<li>[EXTJSIV-1707] - Desktop example - window drag/drop does not work</li>
<li>[EXTJSIV-1719] - Tab scroller menu example - garbage text on top of tab on safari 5</li>
<li>[EXTJSIV-1725] - Tips in Tips Example is Clipped</li>
<li>[EXTJSIV-2370] - The Panel "Location Information" has disappeared from direct/direct-form example</li>
</ul>
</li>
<li>Panel
<ul>
<li>[EXTJSIV-1130] - Panel body text should be 11px</li>
<li>[EXTJSIV-1956] - Panel collapse/expand breaks auto height</li>
</ul>
</li>
<li>Button
<ul>
<li>[EXTJSIV-1632] - The icon in disabled buttons does not get disabled in IE6</li>
<li>[EXTJSIV-2374] - Several buttons issues</li>
</ul>
</li>
<li>Window
<ul>
<li>[EXTJSIV-1723] - Window re-sizing incorrect</li>
<li>[EXTJSIV-1738] - Opera 10.6: Resizing windows snaps to minHeight</li>
<li>[EXTJSIV-1732] - Progress Dialog window locking</li>
<li>[EXTJSIV-1774] - Window constrained into tabpanel not re-showing after toggling between tabs</li>
<li>[EXTJSIV-1980] - Ext.Msg.show() bombs out in FF 4.01 Mac</li>
<li>[EXTJSIV-1981] - Ext.Msg.setIcon() doesn't display icon at correct location in messagebox</li>