-
Notifications
You must be signed in to change notification settings - Fork 1
/
release-notes.html
4474 lines (4432 loc) · 315 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.2
</h1>
<p class="notes">
Release Notes: 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>
<li>[EXTJSIV-2369] - Window title aren't aligned properly in all browsers</li>
<li>[EXTJSIV-2105] - Window title truncated</li>
</ul>
</li>
<li>Chart
<ul>
<li>[EXTJSIV-1770] - Line Chart values incorrect</li>
<li>[EXTJSIV-1951] - Charts post-processes and removes the output of a custom renderer</li>
<li>[EXTJSIV-2368] - Highlighting in the Pie chart example can 'stick' sometimes leaving slices mid animation</li>
<li>[EXTJSIV-1963] - Line drawn between two points of equal value sometimes incorrect when smooth config is set to true</li>
<li>[EXTJSIV-1964] - Line Chart with all data values set to 0 fails to render properly, error thrown</li>
<li>[EXTJSIV-1978] - Time axis configured with fromDate, toDate and constrain fails to render properly</li>
<li>[EXTJSIV-1979] - Chart Legend should use defined colorSet array, currently uses default colorArrayStyle</li>
<li>[EXTJSIV-2246] - Legend should automatically use same colors as chart series, even when the color(s) are specified via style fill config</li>
<li>[EXTJSIV-2335] - Wrong store index passed in line renderers</li>
<li>[EXTJSIV-2350] - charts/Charts.html js hard error in Safari</li>
<li>[EXTJSIV-2355] - Unable to set custom fill style on line chart</li>
</ul>
</li>
<li>Draw
<ul>
<li>[EXTJSIV-1808] - setViewBox doesn't work with VML</li>
</ul>
</li>
<li>Data
<ul>
<li>[EXTJSIV-1858] - collectData hardcodes use of the 'data' property to extract field values. Should use the 'persistanceProperty' of the Model</li>
<li>[EXTJSIV-1896] - Ext.data.Model#persistanceProperty should be spelled persistenceProperty</li>
<li>[EXTJSIV-1966] - Ext.data.Store memory leak</li>
<li>[EXTJSIV-1953] - Ext.grid.property.Store problems</li>
<li>[EXTJSIV-1975] - Generated Getter in BelongsToAssociation does not cache result </li>
<li>[EXTJSIV-2388] - writer/writer.html examples throws a hard error on ie6/ie7</li>
</ul>
</li>
<li>Layout
<ul>
<li>[EXTJSIV-2405] - Docked items added after render don't render correctly</li>
<li>[EXTJSIV-2431] - Accordion is missing a border when collapsed</li>
<li>[EXTJSIV-1900] - Accordion layout with tree initially collapsed does not layout correctly when activated</li>
<li>[EXTJSIV-1970] - Ext.layout.Table rowspan bug</li>
<li>[EXTJSIV-2098] - defaultAnchor ignored</li>
</ul>
</li>
<li>MVC
<ul>
<li>[EXTJSIV-1967] - Multiple Controllers cannot listen to same event on same Component</li>
<li>[EXTJSIV-2331] - Fix build warning for simple MVC app</li>
<li>[EXTJSIV-2332] - Fix build warning for nested-loading MVC app</li>
</ul>
</li>
<li>Core
<ul>
<li>[EXTJSIV-2000] - Ext.core.Element.boxWrap() missing CSS</li>
<li>[EXTJSIV-2006] - Ext.core.Element.frame does nothing</li>
<li>[EXTJSIV-2063] - Ext.util.Animate methods don't get copied to CompositeElement</li>
</ul>
</li>
<li>Menu
<ul>
<li>[EXTJSIV-2002] - Menu doesn't resize when text is changed</li>
<li>[EXTJSIV-2186] - Menu.alignTo is not working in some cases.</li>
</ul>
</li>
<li>TabPanel
<ul>
<li>[EXTJSIV-2386] - Close button on tabs has disappeared</li>
</ul>
</li>
</ul>
<h2>
New Features
</h2>
<ul>
<li>[EXTJSIV-1936] - Make ComboBox work better with existing filters</li>
<li>[EXTJSIV-2093] - Stateful Tree & Grid components do not fully restore state when in Border Layout</li>
</ul>
<h2>
General Improvements
</h2>
<ul>
<li>[EXTJSIV-141] - Fix all coding style violations</li>
<li>[EXTJSIV-1321] - Feed Viewer's blogs list should be a Tree</li>
<li>[EXTJSIV-1957] - Ext.resizer.Resizer widthIncrement addition</li>
<li>[EXTJSIV-1999] - Themes Example Performance</li>
<li>[EXTJSIV-2123] - Event options object secretly passed to every listener</li>
</ul>
<h2>
Documentation Updates
</h2>
<ul>
<li>[EXTJSIV-763] - Inadequate documentation for class AbsractPlugin</li>
<li>[EXTJSIV-765] - Ext.resizer.ResizeTracker docs</li>
<li>[EXTJSIV-780] - Ext.util.Grouper docs</li>
<li>[EXTJSIV-781] - Ext.util.Region</li>
<li>[EXTJSIV-1976] - Ext.app.Controller#control is undocumented</li>
<li>[EXTJSIV-2103] - Fix missing sprite attribute property documentation</li>
<li>[EXTJSIV-2134] - closeAction default is 'hide' but docs say it's 'destroy'</li>
<li>[EXTJSIV-2348] - Layout Browser example API doc links are broken</li>
<li>[EXTJSIV-2352] - constrainTo not documented on Ext.window.Window</li>
</ul>
</div>
<div class="release">
<h1>
Release Notes for Ext JS 4.0.1
</h1>
<p class="notes">
Release Notes: May 17, 2011<br>
Version Number: 4.0.1
</p>
<h2>
Bugs Fixed
</h2>
<ul>
<li>Charts and Drawing
<ul>
<li>[EXTJSIV-144] - Grouped Stacked Negative 0 point not aligned properly</li>
<li>[EXTJSIV-148] - Pie chart labels should be along the centerline of the text, not the baseline.</li>
<li>[EXTJSIV-1769] - Draggable sprite broken</li>
<li>[EXTJSIV-1811] - Problem with hiding items via legend with grouped bar chart</li>
<li>[EXTJSIV-1822] - setAttributes - scale only works on first item</li>
<li>[EXTJSIV-1878] - Line chart scaling incorrect</li>
<li>[EXTJSIV-1892] - Pie chart is not rendering it's shadow properly on initial render</li>
</ul>
</li>
<li>Panel
<ul>
<li>[EXTJSIV-237] - Vertical alignment of the Panel title is not consistent between quirks and strict HTML modes</li>
<li>[EXTJSIV-963] - Vertical headers lack proper centering</li>
<li>[EXTJSIV-1102] - When panel collapse animates, there's some flashing</li>
<li>[EXTJSIV-1814] - Panel doesn't fire close event in TabPanel</li>
</ul>
</li>
<li>Examples
<ul>
<li>[EXTJSIV-482] - Logos example has a few cosmetic issues</li>
<li>[EXTJSIV-1001] - Form is missing in Safari 3.2 with form/form-grid-access.html</li>
<li>[EXTJSIV-1083] - Themes Example: Progress bar doesn't show any text</li>
<li>[EXTJSIV-1118] - Portal Drag and Drop IE 6 & 7</li>
<li>[EXTJSIV-1121] - feed viewer - highlight on mouse over incorrect</li>
<li>[EXTJSIV-1141] - Sliding Pager Extension Example: There's no Panel Resizing at the bottom of the grid</li>
<li>[EXTJSIV-1142] - FeedViewer: apply sensible minWidth on feeds panel</li>
<li>[EXTJSIV-1165] - Summary Grid: Need an Icon in the Panel</li>
<li>[EXTJSIV-1172] - Grid Plugin Example: No Checkbox Plugin in the bottom example</li>
<li>[EXTJSIV-1173] - Grid Filtering Local: ID Column should have a smaller width</li>
<li>[EXTJSIV-1180] - Rest proxy example - notification is missing when updating</li>
<li>[EXTJSIV-1193] - Combo Box Example: State name Combo Boxes are too wide</li>
<li>[EXTJSIV-1204] - Ext.Action Example should port the existing Action Example over</li>
<li>[EXTJSIV-1211] - Double clicking in Manager Details header doesn't always open the combo box </li>
<li>[EXTJSIV-1460] - Panel resizer ux not working properly or styled correctly</li>
<li>[EXTJSIV-1474] - Black background in desktop/desktop.html example in quirks mode</li>
<li>[EXTJSIV-1481] - form/xml-form is broken in Safari 3.2 with transitional DOCTYPE</li>
<li>[EXTJSIV-1496] - Desktop cascading doesn't set correct z index</li>
<li>[EXTJSIV-1499] - Desktop example's accordion window does not react to clicking the refresh icon</li>
<li>[EXTJSIV-1535] - Array grid example advertised as stateful. But it does not remember column state</li>
<li>[EXTJSIV-1860] - Nested Loading example is using widget.header alias which is reserver for standard Panel Headers</li>
<li>[EXTJSIV-1861] - Portal example is having to synchronously load Ext.layout.component.Body.</li>
<li>[EXTJSIV-1919] - Error in charts/draw code on portal example</li>
<li>[EXTJSIV-1922] - Error in grid multiple sorting example</li>
<li>[EXTJSIV-1923] - Error on editor example</li>
<li>[EXTJSIV-1924] - FormDashboard chart example fieldset is too short</li>
<li>[EXTJSIV-1927] - Text rotation example missing text</li>
</ul>
</li>
<li>Toolbars
<ul>
<li>[EXTJSIV-939] - Artifact in search toolbar only with Chrome 5</li>
<li>[EXTJSIV-980] - Background color in bottom toolbar should be blue</li>
<li>[EXTJSIV-1109] - disabled text color in buttons is too light</li>
<li>[EXTJSIV-1865] - Toolbar with removeAll() crashes when used with overflow</li>
</ul>
</li>
<li>Layout
<ul>
<li>[EXTJSIV-1846] - Infinite loop, IE Border layout</li>
<li>[EXTJSIV-1867] - Resizers on border layout do not constrain during drag</li>
<li>[EXTJSIV-1931] - collapsedCls not applied in border layout</li>
<li>[EXTJSIV-1845] - hideCollapseTool ignored in border layout/panel</li>
<li>[EXTJSIV-1780] - Collapsing large grid in border layout fails</li>
</ul>
</li>
<li>Windows
<ul>
<li>[EXTJSIV-1708] - Desktop example - windows don't move or resize</li>
<li>[EXTJSIV-1737] - Opera 10.6: Windows cannot be moved vertically</li>
<li>[EXTJSIV-1751] - Ext.Window Maximize doesnt account for browser window resize</li>
<li>[EXTJSIV-1792] - Window fails with preventHeader: true</li>
<li>[EXTJSIV-1945] - Window doesn't constrain properly when animating</li>
</ul>
</li>
<li>Styling
<ul>
<li>[EXTJSIV-1269] - Checkbox in header does not line up with checkbox in the data rows</li>
<li>[EXTJSIV-1271] - Arrow is not vertically centered in the overflow toolbar</li>
<li>[EXTJSIV-1317] - Slightly rounded corners on menu item highlights</li>
<li>[EXTJSIV-1322] - Window header color is different to 3.x</li>
<li>[EXTJSIV-1417] - The text "Powered by" in logo is not legible</li>
<li>[EXTJSIV-1516] - Menus are not in access-theme colors for the access example</li>
<li>[EXTJSIV-1540] - Disabled buttons are really hard to read</li>
<li>[EXTJSIV-1764] - Accessibility theme missing images</li>
<li>[EXTJSIV-1841] - $panel-border-radius does not work</li>
<li>[EXTJSIV-1825] - Button mixin in SASS is inconsistant with other UI mixins - quick fix</li>
<li>[EXTJSIV-1826] - Window does not adhere to $base-color</li>
<li>[EXTJSIV-1842] - 2 issues with button variables, not working correctly.</li>
<li>[EXTJSIV-1851] - Errors when building template my-ext-theme.scss</li>
<li>[EXTJSIV-1854] - Remove breaking comments from layout/_layout.scss</li>
<li>[EXTJSIV-1862] - ui theme does not apply to window drag & drop proxy</li>
<li>[EXTJSIV-1918] - Can't set overflow hidden on component style</li>
</ul>
</li>
<li>Form
<ul>
<li>[EXTJSIV-1758] - Checkbox field does not report correct value</li>
<li>[EXTJSIV-1775] - combo box autoSelect attribute non-functional</li>
<li>[EXTJSIV-1781] - Combo Picker doesn't shift when window resizes</li>
<li>[EXTJSIV-1798] - serializeForm tries to call .format</li>
<li>[EXTJSIV-1809] - Html encoding issues on forms with standard submit</li>
<li>[EXTJSIV-1834] - Keyup doesn't fire on combo</li>
<li>[EXTJSIV-1838] - Checkbox getModelData incorrect</li>
<li>[EXTJSIV-1839] - Fieldset doesn't render items when collapsed</li>
<li>[EXTJSIV-1847] - Weird form field height display</li>
<li>[EXTJSIV-1849] - Performance issues when adding multiple items to a form</li>
<li>[EXTJSIV-1857] - Combo - Allow exclusion of queryParam</li>
<li>[EXTJSIV-1869] - DisplayField alignment incorrect</li>
<li>[EXTJSIV-1899] - field.Date refocuses on blur when picker is expanded</li>
<li>[EXTJSIV-1902] - NumberField ignores disableKeyFilter</li>
<li>[EXTJSIV-1942] - NumberField doesn't return number type when value is 0.</li>
<li>[EXTJSIV-1943] - Checkbox should check for undefined uncheckedValue</li>
</ul>
</li>
<li>Grid / Tree
<ul>
<li>[EXTJSIV-1689] - Selection model selectAll/deselectAll fire selectionchange event for every record</li>
<li>[EXTJSIV-1757] - Grid loses row striping after editing</li>
<li>[EXTJSIV-1762] - Grid: CellEditing problems destroying</li>
<li>[EXTJSIV-1767] - ActionColumn fails when creating a global handler</li>
<li>[EXTJSIV-1771] - Deselect doesnt fire in multi select mode</li>
<li>[EXTJSIV-1773] - itemmousenter/itemmouseleave fire on every mouseover/mouseout event bubbled from *within* a View item</li>
<li>[EXTJSIV-1778] - PropertyGrid crashes on destroy</li>
<li>[EXTJSIV-1782] - PropertyGrid crashes when removing from store</li>
<li>[EXTJSIV-1788] - Cell Editor doesn't update context</li>
<li>[EXTJSIV-1794] - Crash when rootVisible false</li>
<li>[EXTJSIV-1800] - RowNumberer incompatible with groupingSummary</li>
<li>[EXTJSIV-1802] - Editor doesn't hide on grid scroll - FF</li>
<li>[EXTJSIV-1819] - Grid in accordion layout doesn't show headers</li>
<li>[EXTJSIV-1824] - PropertyGrid has no alias</li>
<li>[EXTJSIV-1831] - Checkbox Selection model missing alias.</li>
<li>[EXTJSIV-1848] - Row Editor doesn't work with grid filtering</li>
<li>[EXTJSIV-1871] - PropertyGrid doesn't update source correctly</li>
<li>[EXTJSIV-1872] - PropertyStore refers to wrong object</li>
<li>[EXTJSIV-1875] - Tree doesn't allow string store id.</li>
<li>[EXTJSIV-1881] - PreviewPlugin overwrites features</li>
<li>[EXTJSIV-1926] - Safari: scrolling via wheel in grid also scrolls the page</li>
<li>[EXTJSIV-1932] - NodeInterface callback params incorrect.</li>
<li>[EXTJSIV-1939] - ProgressBar Pager fails with empty store</li>
<li>[EXTJSIV-1958] - View DD contains redundant check</li>
</ul>
</li>
<li>General
<ul>
<li>[EXTJSIV-988] - ToolTip/QuickTip steals shadow from modal window</li>
<li>[EXTJSIV-1003] - Accessibility Theme has several glitches (IE9 Quirks)</li>
<li>[EXTJSIV-1047] - Validation change steals focus in Safari (3.? and 4 at least)</li>
<li>[EXTJSIV-1217] - Localization files are missing a bunch of strings - NL, DE, etc</li>
<li>[EXTJSIV-1218] - Validation looks wrong in a frame panel with checkboxes</li>
<li>[EXTJSIV-1295] - TextField focus method does not focus, DelayedTask at fault?</li>
<li>[EXTJSIV-1510] - The close button in accordion does a refresh instead.</li>
<li>[EXTJSIV-1528] - The previous/next buttons do not always un-focus after clicking on it and moving the mouse away</li>
<li>[EXTJSIV-1562] - Collapse icon does not relocate after resizing the browser window</li>
<li>[EXTJSIV-1648] - Checkbox selection doesn't fire selection change</li>
<li>[EXTJSIV-1650] - Programmatically disabled before rendered prevents enabling </li>
<li>[EXTJSIV-1654] - Using Quicktips on Frameset only page cause hard error</li>
<li>[EXTJSIV-1736] - IE6 - Slider doesn't show up</li>
<li>[EXTJSIV-1756] - Disabled text in forms have regressed in IE 6</li>
<li>[EXTJSIV-1766] - Image Component crashes when rendered in IE</li>
<li>[EXTJSIV-1779] - beforetabchange returning false doesn't stop tab changing.</li>
<li>[EXTJSIV-1784] - Warn statements need to wrapped to check of the existence of the console</li>
<li>[EXTJSIV-1790] - Observable shouldn't fail when removing an event that doesn't exist</li>
<li>[EXTJSIV-1807] - Application fails when no controllers are specified</li>
<li>[EXTJSIV-1813] - Store Can't read grouping info when specified on the class definition</li>
<li>[EXTJSIV-1817] - Removed unused code: getSortState</li>
<li>[EXTJSIV-1818] - NodeInterface destroy shadows Model destroy</li>
<li>[EXTJSIV-1852] - JSBuilder doesn't build .jsb3 files correctly if using relative paths</li>
<li>[EXTJSIV-1853] - JSBuilder not producing build correctly.</li>
<li>[EXTJSIV-1856] - WebKit browsers lose selection in TEXTAREA elements</li>
<li>[EXTJSIV-1864] - Store cannot set filters via prototype properties</li>
<li>[EXTJSIV-1880] - Change autoCreateViewport to be false by default on Ext.app.App</li>
<li>[EXTJSIV-1888] - Ext.Error.raise embeds an alert in IE or FF w/o Firebug (not good for many uses)</li>
<li>[EXTJSIV-1889] - Splitter dragging doesn't work with iframes</li>
<li>[EXTJSIV-1890] - Record raw property set too late</li>
<li>[EXTJSIV-1895] - Ext.Array#include doesn't return anything, but docs say it does</li>
<li>[EXTJSIV-1896] - Ext.data.Model#persistanceProperty should be spelled persistenceProperty</li>
</ul>
</li>
</ul>
<h2>Documentation Improvements</h2>
<ul>
<li>[EXTJSIV-739] - Improved Ext.fx.Animator docs</li>
<li>[EXTJSIV-751] - Improved Ext.grid.GridPanel docs</li>
<li>[EXTJSIV-769] - Improved Ext.tip.ToolTip docs</li>
<li>[EXTJSIV-1074] - Improved Ext.app.Controller docs</li>
<li>[EXTJSIV-1227] - Improved Ext.chart.Mask</li>
<li>[EXTJSIV-1229] - Added docs for Ext.grid.property.Grid</li>
<li>[EXTJSIV-1238] - Add documentation to tabPanel private methods</li>
<li>[EXTJSIV-1293] - Documented Store.removeAll</li>
<li>[EXTJSIV-1421] - Documented the Organizer example</li>
<li>[EXTJSIV-1433] - Better docs for Ext.app.Application</li>
<li>[EXTJSIV-1891] - documented loadMask configuration property of Ext.Component and descendants</li>
<li>[EXTJSIV-1894] - Documented Ext.draw.Sprite events not documented</li>
<li>[EXTJSIV-1898] - Removed Ext.getModel from data guide</li>
<li>[EXTJSIV-1901] - Documented Ext.CompositeElement documents methods without names</li>
<li>[EXTJSIV-1903] - Bad reference to Ext.panel.Panel#frame for more documentation</li>
<li>[EXTJSIV-1904] - Added missing image: guides/tree/simple-tree.png</li>
<li>[EXTJSIV-43] - Documented the fact that attributes are transformed to model fields</li>
<li>[EXTJSIV-1485] - SDK Bootstrapping Guide and Build Tools for Developers</li>
<li>[EXTJSIV-1248] - More docs for Surface</li>
<li>[EXTJSIV-1244] - Added docs for Gauge AXIS</li>
<li>[EXTJSIV-1796] - Character Encoding issues on deployed docs</li>
<li>[EXTJSIV-1906] - a typo / encoding issue in the getting started guide</li>
</ul>
<h2>General Improvements</h2>
<ul>
<li>[EXTJSIV-1961] - Added callbackName option to Ext.data.JsonP.request</li>
<li>[EXTJSIV-853] - Tooltips: Renamed initTarget to setTarget</li>
<li>[EXTJSIV-1536] - Added a vertical toolbar example</li>
</ul>
</div>
<div class="release">
<h1>
Release Notes for Ext JS 4.0 Final
</h1>
<p class="notes">
Release Notes: April 26, 2011<br>
Version Number: 4.0.0
</p>
<h2>
New In This Release
</h2>
<ul>
<li>New Features
<ul>
<li>[EXTJSIV-919] - CheckHeader fires an additional change event</li>
<li>[EXTJSIV-1291] - Charts draw undefined values</li>
<li>[EXTJSIV-1352] - Floating should allow Component as an argument to alignTo</li>
</ul>
</li>
</ul>
<ul>
<li>Bug Fixes
<ul>
<li>[EXTJSIV-2] - Normalize text baseline calculation for FireFox 3.0 and 3.5</li>
<li>[EXTJSIV-495] - Forum search example - search does not work</li>
<li>[EXTJSIV-513] - DragSelector does not maintain selection in IE</li>
<li>[EXTJSIV-528] - Improve class loader performance</li>
<li>[EXTJSIV-571] - autoHeight Box layouts</li>
<li>[EXTJSIV-672] - Active tab has dark line beneath in access theme</li>
<li>[EXTJSIV-697] - Element loses event Listener</li>
<li>[EXTJSIV-788] - Grid in accordion layout displays scrollbars</li>
<li>[EXTJSIV-820] - Ext.util.Format.usMoney is not inserting commas into the returned string</li>
<li>[EXTJSIV-826] - When removing + then adding grid summary, it does not add x-grid-cell-first</li>
<li>[EXTJSIV-860] - Row editing shadow issue</li>
<li>[EXTJSIV-863] - IE Header menu issue</li>
<li>[EXTJSIV-869] - Changing Collapsed Titles in a Border Layout</li>
<li>[EXTJSIV-871] - form-grid example layout in IE6</li>
<li>[EXTJSIV-873] - menu shows a small rectangle when it has no items</li>
<li>[EXTJSIV-876] - Grid Menu allows hiding all columns</li>
<li>[EXTJSIV-901] - updateRecord w/ radio group</li>
<li>[EXTJSIV-902] - FieldContainer misses clearInvalid</li>
<li>[EXTJSIV-910] - Need to know when Surface is rendered</li>
<li>[EXTJSIV-912] - IE6 & 7, FF4: Grid Header misaligned with the gridview</li>
<li>[EXTJSIV-932] - Gauge series needs docs.</li>
<li>[EXTJSIV-936] - Trigger field is not flushed using the access theme in IE 6 and 7</li>
<li>[EXTJSIV-975] - Font styles are inconsistent across components</li>
<li>[EXTJSIV-976] - TreeSelectionModel does not use checkbox images</li>
<li>[EXTJSIV-977] - Ext.isFunction return true with a NodeList in Safari 3-4</li>
<li>[EXTJSIV-979] - CSS styling wrong after collapsing Navigation panel</li>
<li>[EXTJSIV-981] - Resizing failure with layout-browser.html --> Table</li>
<li>[EXTJSIV-983] - Border line is missing beneath the grid header row</li>
<li>[EXTJSIV-984] - Bottom scrollbar is not flushed with the right scrollbar</li>
<li>[EXTJSIV-986] - Grid state does not save column width</li>
<li>[EXTJSIV-993] - IE9 Strict Rendering issue with form.fieldset</li>
<li>[EXTJSIV-994] - IE9 Strict Border layout issue</li>
<li>[EXTJSIV-995] - IE7: Artifact in top-left corner of framed panel</li>
<li>[EXTJSIV-996] - Field/Trigger placement in top toolbar needs to move down 1 pixel</li>
<li>[EXTJSIV-999] - Both framing and flushing trigger button issues seen in IE 7</li>
<li>[EXTJSIV-1000] - DatePicker Month title color is black</li>
<li>[EXTJSIV-1002] - IE9 Strict Collapsible button in Ext.form.Fieldset aren't displayed correctly</li>
<li>[EXTJSIV-1004] - Group header grid example is broken</li>
<li>[EXTJSIV-1005] - Locking Grid Lock/Unlock throw an error</li>
<li>[EXTJSIV-1007] - IE9 Strict - RowEditor scrolls the grid view when starting an edit</li>
<li>[EXTJSIV-1008] - Splitter's calculated collapse directions are wrong. 'up' should be 'top', 'down' should be bottom.</li>
<li>[EXTJSIV-1010] - Check/Radio example, white background</li>
<li>[EXTJSIV-1011] - IE 9 Quirks Pie chart example Pie parts border issue</li>
<li>[EXTJSIV-1012] - NumberField - Bottom trigger doesn't hover</li>
<li>[EXTJSIV-1013] - IE9 Quirks Message Box Multi-line prompt: Input width is too large</li>
<li>[EXTJSIV-1014] - ItemSelector button icons missing</li>
<li>[EXTJSIV-1015] - IE9 Strict Tree Checkbox are not correctly positioned</li>
<li>[EXTJSIV-1016] - Grey background on drag drop indicator on IE6</li>
<li>[EXTJSIV-1017] - IE9 Drag and Drop in TreePanel does not work correctly</li>
<li>[EXTJSIV-1020] - Clipping of letters in vertical header titles</li>
<li>[EXTJSIV-1021] - IE9 Custom Styles progress bar doesn't show XP style</li>
<li>[EXTJSIV-1022] - Wrong font for vertical header titles with IE 9</li>
<li>[EXTJSIV-1023] - The minButtonWidth is applied to non-buttons in fbar</li>
<li>[EXTJSIV-1025] - Tree shifts after expand/collapse animation in all IEs</li>
<li>[EXTJSIV-1028] - Grid: Promote from Markup example doesn't work in IE6 &7</li>
<li>[EXTJSIV-1029] - Added an Associations example</li>
<li>[EXTJSIV-1031] - draw/Logos Example the window is too big</li>
<li>[EXTJSIV-1033] - Safari 5 Mac Tabs rendering glitch</li>
<li>[EXTJSIV-1036] - Grid Window in Desktop example permanently loses scrollbars during window resize</li>
<li>[EXTJSIV-1039] - IE 6 &7 Only: After resizing flexed column very wide</li>
<li>[EXTJSIV-1040] - statusbar/statusbar-demo.html toolbar items alignment issue</li>
<li>[EXTJSIV-1042] - Clicking constrained windows does not bring constraining window to top</li>
<li>[EXTJSIV-1044] - Gap between box elements in keynav example</li>
<li>[EXTJSIV-1045] - examples/layout/snap-windows.html throws "Attempting to extend from a class which has not been loaded on the page."</li>
<li>[EXTJSIV-1048] - Inaccurate lastComponentSize returned</li>
<li>[EXTJSIV-1049] - Grid filters are lost when clicking Add Columns in Custom Grid Filters Example (local filtering)</li>
<li>[EXTJSIV-1050] - Feedviewer "view post" has no margin/padding</li>
<li>[EXTJSIV-1051] - Stateful grid doesn't work in IE6</li>
<li>[EXTJSIV-1052] - Multi line message box doesn't show a scrollbar (IE6)</li>
<li>[EXTJSIV-1054] - Portal dragging breaks</li>
<li>[EXTJSIV-1055] - DataView dragged selection not applying in IE6</li>
<li>[EXTJSIV-1056] - Adding more rows after scrolling to the bottom of grid view causes the row editor to disappear</li>
<li>[EXTJSIV-1057] - Quickly trigger window show / hide while it's still animating screws layout / visibility checking</li>
<li>[EXTJSIV-1058] - Resizing window while it's being masked does not resize the masking layer</li>
<li>[EXTJSIV-1059] - Error using GridViewDragDrop plugin</li>
<li>[EXTJSIV-1062] - Menu items don't layout to full width</li>
<li>[EXTJSIV-1063] - Window.show() no longer does a toFront() as in 3.x</li>
<li>[EXTJSIV-1064] - Vertical toolbar separators are vertical but should be horizontal.</li>
<li>[EXTJSIV-1067] - Toolbar enableOverflow property not respected</li>
<li>[EXTJSIV-1071] - Tree getRecords doesn't work correctly</li>
<li>[EXTJSIV-1075] - collapseAll shouldn't collapse root if rootVisible is true</li>
<li>[EXTJSIV-1076] - Possible missing variables</li>
<li>[EXTJSIV-1078] - Shadows look odd on non-white backgrounds</li>
<li>[EXTJSIV-1079] - Theme example is missing some components</li>
<li>[EXTJSIV-1084] - Tab height/tabbar height is not consistent with 3.3</li>
<li>[EXTJSIV-1085] - Tab panel and panel headers need to be the same size</li>
<li>[EXTJSIV-1087] - API Change: Ext.tab.TabPanel renamed to Ext.tab.Panel</li>
<li>[EXTJSIV-1088] - Toolbar Buttons when against the Left side of the gutter need more padding</li>
<li>[EXTJSIV-1089] - In theme example, tree panel is not in the accordion panel</li>
<li>[EXTJSIV-1091] - In theme example, paging toolbar does not display default page number</li>
<li>[EXTJSIV-1092] - Grid Shifts on Header Trigger Click</li>
<li>[EXTJSIV-1093] - Theme example: scrollable tab indicator is off by a pixel </li>
<li>[EXTJSIV-1095] - Theme example - missing multi-trigger field inside GridPanel toolbar</li>
<li>[EXTJSIV-1100] - Button config renders incorrectly - "submit" seems off center</li>
<li>[EXTJSIV-1103] - Padding on toolbar buttons is two pixels at the bottom and one pixel at the top. Should be two pixels on both.</li>
<li>[EXTJSIV-1104] - Framed panel does not have bottom border when headerPosition:top</li>
<li>[EXTJSIV-1106] - iconCls not honored on Ext.grid.column.Action</li>
<li>[EXTJSIV-1108] - pressed state buttons have a background in the corners?</li>
<li>[EXTJSIV-1110] - Split button and menu button: Text and arrow have too much space in between</li>
<li>[EXTJSIV-1111] - Error when using tab in Writer Example</li>
<li>[EXTJSIV-1115] - FeedViewer Add Feed Window is too small</li>
<li>[EXTJSIV-1116] - Accordion panel - accordion titles have more padding on bottom than top</li>
<li>[EXTJSIV-1119] - In the list of examples, it's impossible to close a set of examples</li>
<li>[EXTJSIV-1120] - Border Layout collapsed vertical header has dark black bold text</li>
<li>[EXTJSIV-1122] - Feed View Looses Scroll Bar</li>
<li>[EXTJSIV-1123] - Live Grid Search Example does not have screenshot</li>
<li>[EXTJSIV-1125] - When changing feeds, tabs have the wrong size</li>
<li>[EXTJSIV-1126] - RowEditor edging for buttons in IE</li>
<li>[EXTJSIV-1128] - Feed viewer - add feed dialogue box is missing several elements</li>
<li>[EXTJSIV-1129] - TextField 1px taller than other fields</li>
<li>[EXTJSIV-1131] - Image Viewer Example: Unable to edit album names in the tree</li>
<li>[EXTJSIV-1132] - Panel header has 1 pixel white on left and right</li>
<li>[EXTJSIV-1136] - Paging Grid Example: JsonPProxy in the header isn't the name of the class in the code</li>
<li>[EXTJSIV-1138] - Paging Example: disablePagingSelection:true is not respected</li>
<li>[EXTJSIV-1139] - Portal example - if all components are in one column, cannot drag to 3rd column</li>
<li>[EXTJSIV-1143] - Property grid does not have an indicator to show it's a property grid</li>
<li>[EXTJSIV-1144] - Property Grid Example is too large -- should fit the size to make it look more like a property grid</li>
<li>[EXTJSIV-1146] - Editor Grid Example: Clicking from Common Name in an editor to Light doesn't invoke an editor</li>
<li>[EXTJSIV-1147] - Grid editing example - resizing the column while editing behaves incorrectly</li>
<li>[EXTJSIV-1148] - Custom Grid Filters: Menu is lost on refresh of view</li>
<li>[EXTJSIV-1150] - GroupTextTPL is not implemented</li>
<li>[EXTJSIV-1153] - Row Editing: When editing a row, pixels are missing from the bottom left and bottom right box</li>
<li>[EXTJSIV-1154] - Row Editing: Single click doesn't move the row editor</li>
<li>[EXTJSIV-1155] - Row Editing plugin/example needs to be more like 3.3</li>
<li>[EXTJSIV-1156] - Row Editing: Scrolling and row editor in the wrong place when clicking "Add Plant" </li>
<li>[EXTJSIV-1160] - No loading indication when you open up a node</li>
<li>[EXTJSIV-1161] - Empty Tree has +/- button</li>
<li>[EXTJSIV-1163] - Grouped Grid Example: Missing Collapsable on the Panel and Clear Grouping on the bottom</li>
<li>[EXTJSIV-1164] - Tool missing disabledCls</li>
<li>[EXTJSIV-1166] - Summary Grid Example: Button needs to be fixed</li>
<li>[EXTJSIV-1167] - Status bar example - clock shows up randomly when you start typing</li>
<li>[EXTJSIV-1174] - Need a Remote Filtering Example</li>
<li>[EXTJSIV-1175] - Grid Filtering Example: No Date Column</li>
<li>[EXTJSIV-1176] - Clean up main example page</li>
<li>[EXTJSIV-1177] - Grid Filtering Example: No Boolean Filtering</li>
<li>[EXTJSIV-1179] - Data Writer example appears to not work</li>
<li>[EXTJSIV-1181] - grouped header grid example - crash chrome when dragging a header into it's children</li>
<li>[EXTJSIV-1183] - Grid Multiple Sorting is missing a splitter after sorting order</li>
<li>[EXTJSIV-1185] - Tab Scroller Menu Plugin: Misalignment on top of overflow tabs</li>
<li>[EXTJSIV-1186] - Message Box Confirm Dialog needs more spacing between Yes/No buttons</li>
<li>[EXTJSIV-1188] - Tree Open Animation is incorrect</li>
<li>[EXTJSIV-1190] - Incorrect default body padding?</li>
<li>[EXTJSIV-1191] - Layout browser -> Center layout. Auto height not expanding to body contents</li>
<li>[EXTJSIV-1192] - Complex Layout Example: On load, property grid is selected, but "A Tab" is rendered</li>
<li>[EXTJSIV-1194] - In a combo box, hitting space inside combobox presents user with a big gray box</li>
<li>[EXTJSIV-1195] - Need an Combo Box Example with Transforms</li>
<li>[EXTJSIV-1196] - Combo with Templates and Ajax draws the searching box incorrectly on first load</li>
<li>[EXTJSIV-1197] - Need an example of a fieldset side by side</li>
<li>[EXTJSIV-1198] - Wrong Collapse Indicator in Checkbox Radio Groups</li>
<li>[EXTJSIV-1199] - Bring Back Flash Component (if necessary)</li>
<li>[EXTJSIV-1200] - Combobox in a Menu Dropdown is Flush with Left Edge</li>
<li>[EXTJSIV-1201] - Submenu is Lost when Resizing Window</li>
<li>[EXTJSIV-1203] - Ext.Action Example should port the existing Action Example over</li>
<li>[EXTJSIV-1205] - Cannot read property 'afteredit' of undefined</li>
<li>[EXTJSIV-1209] - Advanced DataView Example: Animation poofs, it doesn't zoom back to the grid when selecting an item</li>
<li>[EXTJSIV-1210] - History Example doesn't work</li>
<li>[EXTJSIV-1214] - Progress bar example needs a blue background</li>
<li>[EXTJSIV-1216] - Panel Example "Panel as Child" is missing border for header in first child</li>
<li>[EXTJSIV-1219] - Portal columns disappear when removing all portlets (regression)</li>
<li>[EXTJSIV-1220] - Numeric Axis shows extra</li>
<li>[EXTJSIV-1222] - Rename Ext.container.Viewport isViewPort property to isViewport</li>
<li>[EXTJSIV-1223] - GroupGrid does not scroll if using paginggridscroller</li>
<li>[EXTJSIV-1231] - ComboBox's bound list: Shadow persists when Store is filtered to zero matches and the list shrinks to zero height.</li>
<li>[EXTJSIV-1232] - DatePicker as dropdown from a DateField should dismiss when you press ESC</li>
<li>[EXTJSIV-1233] - API DOC Browser Class links issue</li>
<li>[EXTJSIV-1235] - Testing: Ext.tip.Tip spec fails in IE6-8</li>
<li>[EXTJSIV-1237] - Move Rob's framing command over to use jarred's new tool</li>
<li>[EXTJSIV-1239] - Need to implement .x-small-editor sizing for form fields</li>
<li>[EXTJSIV-1240] - Regression on rotated labels (check the area select example in test/ui)</li>
<li>[EXTJSIV-1243] - Fix a bug where NodeInterface decorate would always override data fields in your Model, even if they already existed.</li>
<li>[EXTJSIV-1245] - ComboBox selectOnTab does not work if the field has a value.</li>
<li>[EXTJSIV-1246] - Accordion layout fails with hidden items</li>
<li>[EXTJSIV-1247] - MessageBox doesn't work with animateTarget</li>
<li>[EXTJSIV-1249] - Grid column resize indicators don't show when used inside border layout</li>
<li>[EXTJSIV-1250] - Combo with no value returns empty array</li>
<li>[EXTJSIV-1251] - Phantom records should not be added to removed</li>
<li>[EXTJSIV-1252] - Border Layout collapseMode mini positioning incorrect</li>
<li>[EXTJSIV-1253] - Tree needs checkchange event</li>
<li>[EXTJSIV-1254] - Grouping needs to refresh the scroller on grid expand/collapse</li>
<li>[EXTJSIV-1255] - MessageBox reacts to enter keypress even when hidden</li>
<li>[EXTJSIV-1257] - Unable to control whether or not the checkbox is shown for certain rows with CheckboxModel</li>
<li>[EXTJSIV-1258] - Setting border false on grid, headerCt still keeps borders</li>
<li>[EXTJSIV-1260] - DirectProxy doesn't accept string paramOrder</li>
<li>[EXTJSIV-1261] - Reconfigure breaks when used with locked columns</li>
<li>[EXTJSIV-1263] - Window body is slightly different color than window frame</li>
<li>[EXTJSIV-1264] - The grid-plugins example takes a long time in IE 6 to display the grids and scrollbars</li>
<li>[EXTJSIV-1265] - Tabs are broken with draw/Logos.html in IE 8.0</li>
<li>[EXTJSIV-1266] - Row Editing broken when not specifying an editor</li>
<li>[EXTJSIV-1267] - Framing for the access example is broken in some browsers</li>
<li>[EXTJSIV-1268] - Grouping Feature - Events provide no context, aren't fired on the grid</li>
<li>[EXTJSIV-1272] - Add extra string methods to Ext.util.Format so they can be used with templates</li>
<li>[EXTJSIV-1273] - Dragging and Dropping Panels in the Portal Example lose Tools</li>
<li>[EXTJSIV-1274] - Identify and fix transitory Table View memory leak in IE6 &IE7</li>
<li>[EXTJSIV-1279] - Nested Windows not hiding themselves when floatParent (tab) hides.</li>
<li>[EXTJSIV-1280] - Window that is a child of TabPanel doesn't get hidden when Tab is switched, not hiding itself when its floatParent hides.</li>
<li>[EXTJSIV-1281] - DataView#ItemOver tracking does not always detect onItemMouseLeave</li>
<li>[EXTJSIV-1282] - Specifying groupable:false on a column definition has no effect</li>
<li>[EXTJSIV-1283] - Identify and Fix transient memory leak in the HtmlEditor</li>
<li>[EXTJSIV-1284] - Borders are no longer correct.</li>
<li>[EXTJSIV-1285] - Messagebox text not wrapping properly.</li>
<li>[EXTJSIV-1286] - Fieldsets too large in HBox layout in Firefox</li>
<li>[EXTJSIV-1288] - Chart axes and line not aligned</li>
<li>[EXTJSIV-1289] - RowEditor - option to prevent moving editor to new row when there are pending changes</li>
<li>[EXTJSIV-1290] - setClosable on Tab will not remove element</li>
<li>[EXTJSIV-1292] - beforeshow recursion and error</li>
<li>[EXTJSIV-1296] - Several tree examples are failing in IE (all versions)</li>
<li>[EXTJSIV-1297] - Hard Error: Not implemented error seen with IE 8</li>
<li>[EXTJSIV-1298] - ComboBox dropdown has horrible rendering artifacts in IE6</li>
<li>[EXTJSIV-1299] - ComboBox triggerAction:'all' not working after list has been filtered</li>
<li>[EXTJSIV-1301] - PropertyGrid throws error when editing</li>
<li>[EXTJSIV-1303] - Model constructor needs to support array data</li>
<li>[EXTJSIV-1304] - ButtonGroup styling is not perfect. issue with header</li>
<li>[EXTJSIV-1305] - TreePanel.selectPath fails</li>
<li>[EXTJSIV-1306] - RowEditing example - migrate 3.3 example so it is the same</li>
<li>[EXTJSIV-1307] - RowEditing - make animation speed more like 3.3 by default</li>
<li>[EXTJSIV-1308] - Sub-menu menu is not aligned properly</li>
<li>[EXTJSIV-1309] - Menus are misaligned in buttons</li>
<li>[EXTJSIV-1310] - Disabling form does not disable radios and check boxes</li>
<li>[EXTJSIV-1311] - Tab scroller arrows are not correctly aligned</li>
<li>[EXTJSIV-1312] - Central tab panel in the themes example has tabs that are too wide</li>
<li>[EXTJSIV-1314] - Forum browser has 2px blue border on left edge of grid</li>
<li>[EXTJSIV-1315] - Collapse icons disappear when moving a portlet</li>
<li>[EXTJSIV-1316] - Panel expand icon is positioned 1px/2px too low</li>
<li>[EXTJSIV-1318] - Gap between buttons in a window is too small</li>
<li>[EXTJSIV-1319] - Locking grid borders are wrong</li>
<li>[EXTJSIV-1323] - Menu Submenus can get out of alignment</li>
<li>[EXTJSIV-1324] - Status Bar breaks easily</li>
<li>[EXTJSIV-1325] - Status bar date too low</li>
<li>[EXTJSIV-1326] - QuickTips close button missing a bottom border</li>
<li>[EXTJSIV-1327] - Floater.js should not reopen a floating component based solely on its visible state prior to hiding its floatParent</li>
<li>[EXTJSIV-1329] - Vertical header text in IE9 is the wrong font</li>
<li>[EXTJSIV-1330] - RowEditor is missing panel frame corners on bottom left/right of buttons</li>
<li>[EXTJSIV-1332] - Application.getController not using Ext.Loader</li>
<li>[EXTJSIV-1333] - Locking grid doesn't get viewConfig from the GridPanel</li>
<li>[EXTJSIV-1334] - Tip + Window issues</li>
<li>[EXTJSIV-1335] - Stroke opacity in VML</li>
<li>[EXTJSIV-1336] - RowExpander removes other features</li>
<li>[EXTJSIV-1338] - Grid doesn't disable properly</li>
<li>[EXTJSIV-1339] - Store needs clear event - should be fired after a removeAll</li>
<li>[EXTJSIV-1340] - Area chart showing incorrect values</li>
<li>[EXTJSIV-1341] - TabPanel without borders has odd looking headers</li>
<li>[EXTJSIV-1342] - ColorPicker selected class not correct in CSS</li>
<li>[EXTJSIV-1344] - Grid Editing with checkbox editor shows cell contents</li>
<li>[EXTJSIV-1345] - Editor revertInvalid doesn't default to true like the docs say</li>
<li>[EXTJSIV-1346] - Bad global variable detected by test reporter in AbstractComponent</li>
<li>[EXTJSIV-1347] - Browser resizer interferes with textarea </li>
<li>[EXTJSIV-1350] - RowEditor should disable its update button when there are validation errors</li>
<li>[EXTJSIV-1353] - Desktop Example does not work with dynamic loader (only ext-all)</li>
<li>[EXTJSIV-1354] - Can't assign idProperty when creating implicit fields</li>
<li>[EXTJSIV-1355] - Can't destroy grid with DD</li>
<li>[EXTJSIV-1356] - Collapsed grid crashes when expanded</li>
<li>[EXTJSIV-1357] - Combo needs a hiddenName property</li>
<li>[EXTJSIV-1358] - RowEditor - very quick grid view scroll prior to full rendering results in an error</li>
<li>[EXTJSIV-1359] - Framed buttons (IE 6-8) lose their styles when focused or mouseovered</li>
<li>[EXTJSIV-1361] - on tree.Panel the scroller element still has a border when bodyBorder is set to 0</li>
<li>[EXTJSIV-1365] - Transparency is not working in the slicer tool</li>
<li>[EXTJSIV-1367] - There is no styling for overflowHandler Scroller for Toolbar (used by Desktop example)</li>
<li>[EXTJSIV-1371] - Radio buttons look like stars for the access theme</li>
<li>[EXTJSIV-1372] - Tooltips with more than text configuration do not work reliably on Chrome, Safari and IE</li>
<li>[EXTJSIV-1373] - Default window background is incorrect?</li>
<li>[EXTJSIV-1374] - Button group needs more right margin</li>
<li>[EXTJSIV-1376] - htmleditor font combo stays above all content in IE6 (only)</li>
<li>[EXTJSIV-1377] - Grid column dropped into wrong place when inserting into a locked area</li>
<li>[EXTJSIV-1378] - Locking grid: crashes when you drag a column to the first column index</li>
<li>[EXTJSIV-1379] - Make upgrade guide clear that form submission must now use the API</li>
<li>[EXTJSIV-1381] - Create a test for toolbars in every situation</li>
<li>[EXTJSIV-1382] - Masking behavior not correct in theme viewer example</li>
<li>[EXTJSIV-1383] - Vertical text is cut off if the panel is collapsed</li>
<li>[EXTJSIV-1385] - Icon in tree has incorrect padding</li>
<li>[EXTJSIV-1386] - Double triggers seem in example</li>
<li>[EXTJSIV-1387] - Double pixel border on the left side of the accordion panel</li>
<li>[EXTJSIV-1388] - Need to add a UI test to make sure a framed grid can have rounded corners</li>
<li>[EXTJSIV-1393] - Pie chart needs to deal with 0 values</li>
<li>[EXTJSIV-1394] - Portlet z-index issues when dragging</li>
<li>[EXTJSIV-1395] - Tree doesn't setup all dependencies</li>
<li>[EXTJSIV-1397] - Locking doesn't provide a centralized view</li>
<li>[EXTJSIV-1399] - RowEditor buttons &grid scroller have an issue in Opera 11.01 only</li>
<li>[EXTJSIV-1400] - menu.Manager::get, variable undefined</li>
<li>[EXTJSIV-1402] - Sprite doesn't clean up draggable</li>
<li>[EXTJSIV-1403] - SplitButton - overArrow flag gets stuck</li>
<li>[EXTJSIV-1404] - GridPanel should have getStore method</li>
<li>[EXTJSIV-1405] - Button onMenuTriggerOver/Out is not accurate</li>
<li>[EXTJSIV-1407] - RowNumberer - needs a better way to determine the row number</li>
<li>[EXTJSIV-1408] - Organizer example: Dropping the same image into an album twice throws a hard error</li>
<li>[EXTJSIV-1409] - RowEditor throws an error when starting a new edit after a previously failed validation</li>
<li>[EXTJSIV-1410] - RowEditor must update its error summary tooltip for changes to the same field</li>
<li>[EXTJSIV-1411] - Access theme needs image for number field trigger buttons</li>
<li>[EXTJSIV-1416] - Adding a docked:top toolbar tp a headerPosition:right panel/window causes a bug</li>
<li>[EXTJSIV-1418] - Inconsistent look for accordions header titles between browsers</li>
<li>[EXTJSIV-1419] - Inconsistent direction from dark to light for gradient colors in the Logos example </li>
<li>[EXTJSIV-1422] - TabPanel has incorrect bottom border</li>
<li>[EXTJSIV-1423] - Divider line in toolbar is not vertically centered, also doesn't look correct</li>
<li>[EXTJSIV-1426] - No gap between the accordion headers in Safari 4.0</li>
<li>[EXTJSIV-1427] - GridEditing: Column to use editor, field or some other name</li>
<li>[EXTJSIV-1429] - The >> button is not vertically centered in the overflow toolbar examples</li>
<li>[EXTJSIV-1430] - overItemCls not working</li>
<li>[EXTJSIV-1432] - Trailing comma in forum/forum.html example</li>
<li>[EXTJSIV-1436] - Grid sorting icons slightly mispositioned</li>
<li>[EXTJSIV-1438] - Grid column header text slightly mispositioned in all IEs</li>
<li>[EXTJSIV-1439] - Window buttons have an ugly border in IE6 and IE7</li>
<li>[EXTJSIV-1440] - Rest proxy doesn't respect api config</li>
<li>[EXTJSIV-1441] - Vertical toolbar separators margin is incorrect. Seems to get more on the bottom</li>
<li>[EXTJSIV-1442] - Uncaught TypeError: Cannot call method 'bringToFront' of undefined</li>
<li>[EXTJSIV-1444] - Vertical toolbars need to have no margin on the bottom, not the right</li>
<li>[EXTJSIV-1445] - li style disc not set when using styleHtmlContent</li>
<li>[EXTJSIV-1446] - /core gets doubled up in the distributed package</li>
<li>[EXTJSIV-1447] - Form DirectLoad callback fires twice</li>
<li>[EXTJSIV-1448] - Borders need help</li>
<li>[EXTJSIV-1449] - Grid Locking and Sorting not in SYNC FF4</li>
<li>[EXTJSIV-1450] - Accordion bottom border incorrect</li>
<li>[EXTJSIV-1451] - Legend renders incorrectly in Chart FF4.0</li>
<li>[EXTJSIV-1452] - Drag and Drop broken in FF4 organizer example</li>
<li>[EXTJSIV-1453] - Vertical header text in FF is the wrong font</li>
<li>[EXTJSIV-1455] - theme example doesn't select a theme on first load, it seems.</li>
<li>[EXTJSIV-1456] - ComboBox remains open after selection in grid cell editing</li>
<li>[EXTJSIV-1457] - createBuffered ignores scope</li>
<li>[EXTJSIV-1458] - File field crashes when you use disabled: true</li>
<li>[EXTJSIV-1461] - Highlight on charts uses the same window shadow?</li>
<li>[EXTJSIV-1462] - Legend doesn't renable a value FF4</li>
<li>[EXTJSIV-1463] - Menu issues on FF when messing with charts</li>
<li>[EXTJSIV-1464] - Flicker on Animation of Window Showing and incorrect initial position of windows</li>
<li>[EXTJSIV-1465] - ComboBox in a menu does not react correctly</li>
<li>[EXTJSIV-1466] - Leaves a menu up when using the color picker in an overflow</li>
<li>[EXTJSIV-1467] - Status bar too short</li>
<li>[EXTJSIV-1468] - Selection range implemented poorly</li>
<li>[EXTJSIV-1469] - ComboBox with remote search example does not act intuitively</li>
<li>[EXTJSIV-1470] - Remove Simple MVC example from examples</li>
<li>[EXTJSIV-1475] - Vertical separators in toolbars are missing in quirks mode in IE (all versions)</li>
<li>[EXTJSIV-1477] - Left border is missing in draw/Sencha.html example in strict/transitional modes in IE 6</li>
<li>[EXTJSIV-1478] - Broken form/check-radio.html example in IE 6 &7 in strict/transitional DOCTYPE modes</li>
<li>[EXTJSIV-1479] - Zero top/bottom padding in toolbar for the search field -- all browsers affected</li>
<li>[EXTJSIV-1482] - Ext.draw.CompositeSprite.setStyle problem</li>
<li>[EXTJSIV-1483] - The forum/forum.html example is broken in IE 6 with strict/transitional DOCTYPEs</li>
<li>[EXTJSIV-1486] - Tree header shows a 1px border when no column headers, works for grid</li>
<li>[EXTJSIV-1487] - Toolbar separators are not visible in quirks.</li>
<li>[EXTJSIV-1488] - Web Desktop needs to have a blue background</li>
<li>[EXTJSIV-1489] - Desktop example windows don't open smoothly, can't be closed</li>
<li>[EXTJSIV-1490] - Desktop example taskbar buttons not well aligned</li>
<li>[EXTJSIV-1491] - Remove extra bordering on the grid window on Desktop example</li>
<li>[EXTJSIV-1492] - Accordion text and border colors incorrect</li>
<li>[EXTJSIV-1493] - Remove border around desktop's example's accordion window toolbar</li>
<li>[EXTJSIV-1494] - Extra padding between cells in IE 6/7 (first grid) when using strict or transitional DOCTYPEs.</li>
<li>[EXTJSIV-1495] - Desktop example accordion breaks layout</li>
<li>[EXTJSIV-1497] - Desktop example's Notepad window has a double border</li>
<li>[EXTJSIV-1498] - Desktop example's logo has too high z-index</li>
<li>[EXTJSIV-1500] - Desktop example is not listed in the examples page</li>
<li>[EXTJSIV-1505] - Menu doesn't fire deactivate</li>
<li>[EXTJSIV-1506] - The theme viewer example is failing in Safari on Snow Leopard</li>
<li>[EXTJSIV-1507] - Menu Checkbox hideOnClick</li>
<li>[EXTJSIV-1508] - Accordion is broken in desktop example</li>
<li>[EXTJSIV-1509] - Resizing the portal example fails in Safari on Snow Leopard</li>
<li>[EXTJSIV-1512] - Drag &Drop broken with the organizer example</li>
<li>[EXTJSIV-1513] - Tabs are broken with Webkit in the key feed viewer example</li>
<li>[EXTJSIV-1514] - Clicking on tabs creates a big dark-blue border box around it in Safari on Snow Leopard</li>
<li>[EXTJSIV-1515] - Border line is missing for content area in new tabs</li>
<li>[EXTJSIV-1517] - Scrollbar does not reappear after expanding a collapsed grid in example</li>
<li>[EXTJSIV-1518] - Combo-box in Cell Editing Grid Example is Failing with Safari on Snow Leopard</li>
<li>[EXTJSIV-1519] - Scrollbar disappears after unchecking "Show in Groups" and checking again "Show in Groups"</li>
<li>[EXTJSIV-1520] - ZIndexManager: Dynamic Load depends on Ext.window.Window</li>
<li>[EXTJSIV-1521] - Collapsing invisible root node of tree w/vertical scrollbar throws null reference exception</li>
<li>[EXTJSIV-1525] - Previous pull-down menus do not unhighlight when clicking on the next one</li>
<li>[EXTJSIV-1526] - Custom Grid Filters: Object doesn't support this property or method</li>
<li>[EXTJSIV-1527] - The bottom toolbar in the Calendar component just doesn't look right</li>
<li>[EXTJSIV-1529] - Height in toolbar is not tall enough to clearly show the icon after searching</li>
<li>[EXTJSIV-1530] - Last row in charting tooltip is clipped</li>
<li>[EXTJSIV-1531] - Blank spot seen in examples page with IE 8.0</li>
<li>[EXTJSIV-1532] - Vertical header SVG element too small, clips text</li>
<li>[EXTJSIV-1534] - x-column-header-open class not being removed from column header when column menu hides.</li>
<li>[EXTJSIV-1538] - Scrollbar is missing when loading 20 items -- all items are clipped</li>
<li>[EXTJSIV-1539] - Transparency is not working for panels on a gray background</li>
<li>[EXTJSIV-1541] - Patient data is lost after drag &drop and sorting on a grid column</li>
<li>[EXTJSIV-1542] - Sencha icon on Desktop example has black underline (the shadow) in IE6-8</li>
<li>[EXTJSIV-1543] - Panel acts like it has a X+Y value set when rendered in a autoScroll div</li>
<li>[EXTJSIV-1547] - Buttons in DatePicker are not vertically centered -- has zero padding below the buttons</li>
<li>[EXTJSIV-1548] - Custom Layout under Checkbox Groups is blank</li>
<li>[EXTJSIV-1549] - Buttons do not unhighlight after clicking on them and moving the mouse away from it</li>
<li>[EXTJSIV-1550] - Nested Panels not laying out child grids until resize occurs</li>
<li>[EXTJSIV-1554] - The header looks bad after collapsing the window</li>
<li>[EXTJSIV-1555] - Last column header needs right border</li>
<li>[EXTJSIV-1556] - Remove Associations example from examples</li>
<li>[EXTJSIV-1559] - Need to include appropriate video in Desktop example</li>
<li>[EXTJSIV-1561] - Double borders initially, then single border when clicking on the next header</li>
<li>[EXTJSIV-1562] - Collapse icon does not relocate after resizing the browser window</li>
<li>[EXTJSIV-1563] - onReady Handling is Different than in 3.3</li>
<li>[EXTJSIV-1565] - Tooltip is clipped for the Toolbar with Menus example</li>
<li>[EXTJSIV-1566] - The close button has no effect on the panel</li>
<li>[EXTJSIV-1571] - JS error in when deleting a row in restful example</li>
<li>[EXTJSIV-1572] - Split buttons stay highlighted after clicking and moving the mouse away from it</li>
<li>[EXTJSIV-1573] - Several border lines are missing in the feed-viewer example</li>
<li>[EXTJSIV-1574] - emptyText in the fields are not vertically centered in IE 6/7/8</li>
<li>[EXTJSIV-1575] - Right side of tab bar is not flushed in IE 7 &IE 6</li>
<li>[EXTJSIV-1576] - The grid header in the 2nd grid is taller than the header in the first grid</li>
<li>[EXTJSIV-1578] - Double border-lines around frame</li>
<li>[EXTJSIV-1579] - Double border-lines around bottom toolbar</li>
<li>[EXTJSIV-1581] - Grid editor's input fields now have incorrect padding since a recent change to grid cell padding style.</li>
<li>[EXTJSIV-1582] - Last grid in grid-plugins example should enable remove button if a row is selected.</li>
<li>[EXTJSIV-1583] - Framed Panel's body border color wrong.</li>
<li>[EXTJSIV-1584] - Horizontal splitter too tall in IE6</li>
<li>[EXTJSIV-1585] - htmleditor body stays visible when containing window is minimized in IE6-8</li>
<li>[EXTJSIV-1586] - Border line is missing beneath the panel header -- all browsers</li>
<li>[EXTJSIV-1587] - Border line is missing above all three panel headers including sides -- all browsers</li>
<li>[EXTJSIV-1588] - Tree in accordion window of desktop example has double border</li>
<li>[EXTJSIV-1590] - Scatter chart doesn't render with a Time axis</li>
<li>[EXTJSIV-1591] - IE6 tooltip width aren't calculated properly on ie6</li>
<li>[EXTJSIV-1592] - Accordion items bottom border doesn't fit the accordion width (IE6)</li>
<li>[EXTJSIV-1594] - Scrollers at any level under a panel with no borders has no borders.</li>
<li>[EXTJSIV-1596] - Organizer Example: the left tree panel must be scrollable</li>
<li>[EXTJSIV-1597] - Modal layer does not block access to select elements on page n IE6</li>
<li>[EXTJSIV-1598] - Ext.core.Element needs to be aliased to Ext.Element for backwards compability</li>
<li>[EXTJSIV-1599] - MsgBox prompt right margin is almost nothing in IE6</li>
<li>[EXTJSIV-1600] - Window always tries to call toFront on mousedown, even with floating:false</li>
<li>[EXTJSIV-1602] - Link to new vertical toolbar example is broken in examples page</li>
<li>[EXTJSIV-1604] - Row expander doesn't work with IE Quirk</li>
<li>[EXTJSIV-1605] - Menu with single item has way too much bottom padding in IE6 and a little too much in IE8</li>
<li>[EXTJSIV-1606] - Inaccurate Ext.Loader error message thrown when files have been loaded but the corresponding classes are not defined</li>
<li>[EXTJSIV-1607] - StatusBar example clips iconCls in IE (all versions)</li>
<li>[EXTJSIV-1608] - Mouse wheel scroll through expanded combo generates JS error in IE6 and IE7</li>
<li>[EXTJSIV-1609] - Cell editing: When you move a column while you're editing an error is thrown and field is still visible</li>
<li>[EXTJSIV-1610] - Grouping Header: Columns with flex 1 move bug</li>
<li>[EXTJSIV-1611] - Header/Column alignment issue </li>