-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease-notes.html
4819 lines (4800 loc) · 349 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">
<!-- ************************************************************************** -->
<!--
When a release is made, copy the generated div below this dynamic section
and then edit the queries below to adjust for the next release.
-->
<div class="release">
<h1>Release Notes for Ext JS 4.2.1</h1>
<p class="notes">
Release Date: May 16, 2013<br>
Version Number: 4.2.1.883
</p>
<h2>General</h2>
<p>The final release of Ext JS 4.2.1 contains numerous fixes and small
enhancements requested by customers and the community. While the
details are below, there are several items worth calling out.
<h3>New Big Data Example</h3>
<p>The new
<a href="http://docs.sencha.com/extjs/4.2.1/extjs-build/examples/build/KitchenSink/ext-theme-neptune/">
Big Data example</a> shows off all of the major grid features
and plugins working together in a single grid. It also shows off a
text field in a grid column header! Head over and check it out!
<h3>Sencha Cmd 3.1.2</h3>
<p>To coincide with this release, Sencha Cmd 3.1.2 is also now available.
The primary change with regards to Cmd is that the packages produced
by Ext JS now stay inside the "ext" folder when you generate a new
application or workspace. The "ext-*" packages previous saved to your
"packages" folder can be removed. For details see the
<a href="http://cdn.sencha.com/cmd/3.1.2.342/release-notes.html">release notes
for Sencha Cmd 3.1.2</a>. If you are using Sencha Cmd, it is
recommended that you upgrade to the new version.
<h3>Locale Package Consolidation</h3>
<p>In Ext JS 4.2.0 we migrated the locale files in to Sencha Cmd packages
to facilitate switching between locales. The downside is that this
produced a lot of small packages that needed to be required in your
<tt>"app.json"</tt> (or used as pure JS files). As an enhancement to
this process in Ext JS 4.2.1 we have consolidated all of the locales
into the <tt>ext-locale</tt> package. The legacy file paths are still
preserved, but if you are using locale packages, you can now just do
this in your <tt>"app.json"</tt> file:
<pre>"requires": [
'ext-locale'
]</pre>
<p>You will still need to set <tt>app.locale</tt> to pick up the proper
locale overrides. They are just all located in the one package in
this release.
<h2>New Features</h2>
<ul>
<li class="component">Core (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-8123</span> <span class="ticket-notes">Enhance Ext.util.Format.fileSize to calculate gigabytes (GB)</span>
</li>
</ul>
</li>
<li class="component">Layouts (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-9509</span> <span class="ticket-notes">A splitter's collapseOnDblClick cannot be disabled via the object's config</span>
</li>
</ul>
</li>
<li class="component">Locale (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-9653</span> <span class="ticket-notes">Locales should be consolidated to a single ext-locale package instead of requiring each locale independently</span>
</li>
</ul>
</li>
<li class="component">Misc (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-9389</span> <span class="ticket-notes">Add SASS variables that can be used to prevent "default" UIs from being generated.</span>
</li>
</ul>
</li>
Total: 4</ul>
<h2>Bugs Fixed</h2>
<ul>
<li class="component">Button (3)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-9323</span> <span class="ticket-notes">Focus is not set on buttons in IE</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9658</span> <span class="ticket-notes">Button layout fails when button component height is too small</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9864</span> <span class="ticket-notes">Disabled buttons can still receive focus using TAB</span>
</li>
</ul>
</li>
<li class="component">Charts (4)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7235</span> <span class="ticket-notes">Series label color is not applied and location is incorrect</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9393</span> <span class="ticket-notes">Series instance cannot be initialized properly</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9422</span> <span class="ticket-notes">Issues with custom font, padding, itemSpacing of chart legend box</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9536</span> <span class="ticket-notes">Stacked Column Chart with Missing Y Value has Incorrect Maximum</span>
</li>
</ul>
</li>
<li class="component">Core (10)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-8286</span> <span class="ticket-notes">Element.switchOff() and other animation methods do not call users callback on complete</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8764</span> <span class="ticket-notes">Element.on/un and Observable.un should accept function names as Observable.on does</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9339</span> <span class="ticket-notes">TextMetrics ignores container styles</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9405</span> <span class="ticket-notes">CSS reset style rule remains on the body that sets border box</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9469</span> <span class="ticket-notes">Ext.Date format creates global variables</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9535</span> <span class="ticket-notes">Ext.util.Format.number incorrect result with custom locale and value < 1000</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9590</span> <span class="ticket-notes">mouseoverItem in Ext.view.View</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9604</span> <span class="ticket-notes">Ext.clone needs hasOwnProperty check for IE browsers with enumerable bug</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9630</span> <span class="ticket-notes"> Ext.destroy should support destroying stores</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9689</span> <span class="ticket-notes">Resizable: resize handles are always transparent</span>
</li>
</ul>
</li>
<li class="component">Data (6)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-8977</span> <span class="ticket-notes">PagingMemoryProxy's load mask is never removed</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9326</span> <span class="ticket-notes">The removeAll method does not completely clear a buffered store</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9523</span> <span class="ticket-notes">Changing id in filtered store skips snapshot</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9550</span> <span class="ticket-notes">Store removeAll doesn't clear snapshot</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9811</span> <span class="ticket-notes">Stores configured with autoDestroy: true may produce JavaScript errors in certain cases</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9815</span> <span class="ticket-notes">AbstractMixedCollection does not filter out records with duplicate id's when added in bulk</span>
</li>
</ul>
</li>
<li class="component">Direct (3)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7766</span> <span class="ticket-notes">Timeout is ignored if form is submitted with DirectSubmit</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9250</span> <span class="ticket-notes">DirectLoad and DirectSubmit actions should resolve Direct methods on first call</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9295</span> <span class="ticket-notes">Direct PollProvider does not handle erroneous input properly</span>
</li>
</ul>
</li>
<li class="component">Documentation (7)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7521</span> <span class="ticket-notes">Lockable mixin is not listed for Grid in the docs</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8004</span> <span class="ticket-notes">Documentation on #SenchaCmd for #ExtJS doesn't mention to use latest version of #SenchaSDK tools. Can easily get caught</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8487</span> <span class="ticket-notes">Ext.Component.afterRender marked as private</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8488</span> <span class="ticket-notes">Ext.dd.DragZone.destroy should be marked public</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9294</span> <span class="ticket-notes">Ext.ComponentQuery needs more documentation</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9636</span> <span class="ticket-notes">Ext.app.Application name should be documented as mandatory</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9659</span> <span class="ticket-notes">The Building Themes for ExtJS guide is empty</span>
</li>
</ul>
</li>
<li class="component">Draw (2)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-9786</span> <span class="ticket-notes">Drawing: Re sizable Sencha Logo: Displaying JS Error on Loading the example on IE9 Browser.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9795</span> <span class="ticket-notes">Drawing : Browser Logos : Displaying JS error upon closing the Draw component panel.</span>
</li>
</ul>
</li>
<li class="component">Events (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-9261</span> <span class="ticket-notes">Observable.observe does not capture events properly</span>
</li>
</ul>
</li>
<li class="component">Examples (2)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-9654</span> <span class="ticket-notes">Basic Templating example has incorrect XTemplate statement</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9757</span> <span class="ticket-notes">Combination Examples: Web Desktop : Displaying JS error while selecting options from the menu.</span>
</li>
</ul>
</li>
<li class="component">Forms (17)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7355</span> <span class="ticket-notes">numberfield's autoStripChars does not work on numbers with exponents such as "1e42"</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7792</span> <span class="ticket-notes">Forms scrolls in window in Chrome</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8006</span> <span class="ticket-notes">Combobox field value not correct on select event when leaving field using mouse click</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8067</span> <span class="ticket-notes">HtmlEditor - tabbing into editor field in Internet Explorer 9 throws error</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8158</span> <span class="ticket-notes">Triggerfield height can not be adjusted with setHeight()</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8278</span> <span class="ticket-notes">Background color does not follow growing text</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8542</span> <span class="ticket-notes">htmleditor places a "br" tag in the editor field after pressing the source edit button in firefox</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9303</span> <span class="ticket-notes">HtmlEditor throws JS error when selecting certain toolbar items with selected text on IE</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9439</span> <span class="ticket-notes">Loading large amount of data in the HtmlEditor locks up FF19 / FF20</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9487</span> <span class="ticket-notes">Default 'x-form-file-wrap' class not applied to filefield when form contains a fieldBodyCls in fieldDefaults</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9501</span> <span class="ticket-notes">HTMLEditor - setValue does not work when component is not rendered</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9527</span> <span class="ticket-notes">HtmlEditor causes form isDirty() to be true</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9555</span> <span class="ticket-notes">combineLabels does not work</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9558</span> <span class="ticket-notes">In tabbed panel, data doesn't load in HtmlEditor</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9603</span> <span class="ticket-notes">Combo is too slow when loading a large amount of items</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9641</span> <span class="ticket-notes">FieldSet fieldvaliditychange and fielderrorchange don't fire</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9766</span> <span class="ticket-notes">Double clicking on editor causes: NS_ERROR_INVALID_POINTER</span>
</li>
</ul>
</li>
<li class="component">Grid (44)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-5245</span> <span class="ticket-notes">Grid column lines are shown for hidden columns if RowExpander is used</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-5543</span> <span class="ticket-notes">focus is lost on an active cell editor in an editable grid</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6294</span> <span class="ticket-notes">When tabbing quickly through cell editing, the cell editor drops out of edit mode (intermittent)</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6734</span> <span class="ticket-notes">Hidden grid column's height is not properly measured when wordwrap is used</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7331</span> <span class="ticket-notes">HeaderContainer defaults doesn't work if there is a column with locked: true</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7437</span> <span class="ticket-notes">GridFilters feature doesn't work for unlocked columns</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7855</span> <span class="ticket-notes">Setting a value in a grid removes focus from textfield</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8795</span> <span class="ticket-notes">Grids lose horizontal scroll position on row focus in IE</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8910</span> <span class="ticket-notes">Grid filters aren't taking a lockingPartner into account when filtering</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9001</span> <span class="ticket-notes">VERY slow tree grid on second load with bufferedrenderer plugin</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9095</span> <span class="ticket-notes">blur() not firing when pressing tab to leave datefield grid cell editor</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9130</span> <span class="ticket-notes">Bufferedrenderer can lose track of scroll position if user scrolls grid rapidly</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9139</span> <span class="ticket-notes">Buffered renderer crashes when modifying store before rendered</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9262</span> <span class="ticket-notes">drag/drop plugins cause grid focus and scrollbar reset with prevent focus</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9367</span> <span class="ticket-notes">Cell beforeedit event is fired twice when clicking on an editable cell</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9376</span> <span class="ticket-notes">Grid RowExpander does not work with locking enabled</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9379</span> <span class="ticket-notes">Grid performance with many columns and editing</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9380</span> <span class="ticket-notes">Grid column lines not synced with header in locked+grouped sample</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9382</span> <span class="ticket-notes">Load mask disappears too soon when buffered store loads pages.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9385</span> <span class="ticket-notes">Tab key not working on grid cell edit with group feature, but ungrouped store</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9390</span> <span class="ticket-notes">GridPanel reconfigure does not refresh the data on reconfigure if there's a buffered renderer plugin.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9397</span> <span class="ticket-notes">Grids: Infinite Grid: Vertical scroll bar size increases after sorting any columns</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9402</span> <span class="ticket-notes">forceFit calculations being applied too late upon reconfigure.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9406</span> <span class="ticket-notes">Grid not displaying emptyText when container layout 'auto'</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9411</span> <span class="ticket-notes">Meta config example throws errors on mouseover after reloading metadata</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9426</span> <span class="ticket-notes">Ellipsis no longer appear in grid column header when column title is long</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9438</span> <span class="ticket-notes">Nested column headers do not get the correct height when using white-space:normal</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9453</span> <span class="ticket-notes">Resizing last column of grid throws error</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9454</span> <span class="ticket-notes">Hiding a wide column in a crowded forceFit grid can shrink the column upon show.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9457</span> <span class="ticket-notes">Auto align feature on column divider incorrect in IE in some cases</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9475</span> <span class="ticket-notes">Kitchen Sink: Grids: Big Data: Emptying cell data under 'Name' column and then clicking on 'Update' button under row editor displays JS error</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9476</span> <span class="ticket-notes">Kitchen Sink: Grids: Big Data: Drag and drop 'Notice Period' column into locked area displays JS error</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9532</span> <span class="ticket-notes">Column widths go wrong with hidden column and forcefit true</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9562</span> <span class="ticket-notes">Grid summary columns not resizing/behaving same as regular grid columns</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9595</span> <span class="ticket-notes">Kitchen Sink: Big Data: Locking the 'Absences' group displays JS error</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9637</span> <span class="ticket-notes">Row Grouping Grid with locked column presents incorrect row alignment with large datasets</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9662</span> <span class="ticket-notes">Combination Examples: Kitchen Sink: Grouped Grid: Expanding a group for second time displays JS error</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9691</span> <span class="ticket-notes">RowEditor should flip its buttons to the top when there is not room to scroll them into view.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9756</span> <span class="ticket-notes">Combination Examples: Kitchen sink: Drag and Drop: Grid to form: The swapping and the Drag and Drop Functionality is not working on IE10 Browser.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9804</span> <span class="ticket-notes">Grid doesn't check hidden state in hide/show</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9805</span> <span class="ticket-notes">Column events not fired correctly</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9819</span> <span class="ticket-notes">collapseAll() and expandAll() create circular logic that locks up the browser when a grid is grouped and locked</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9851</span> <span class="ticket-notes">Grouping doubles up on expand / collapse when buffer rendered and data fits within view height.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9860</span> <span class="ticket-notes">Kitchen sink: Big Data: Collapsing a group displays JS error</span>
</li>
</ul>
</li>
<li class="component">Layouts (6)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7407</span> <span class="ticket-notes">Adding a collapsed region to a border layout throws an error</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8000</span> <span class="ticket-notes">Borders problem with collapsible and 'mini' collapseMode within border layout</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9272</span> <span class="ticket-notes">Anchor and Column layouts have unnecessary gap for scrolling</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9305</span> <span class="ticket-notes">Anchor layout does not exclude scrollbar width when the autoScroll=true and anchor=100%</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9401</span> <span class="ticket-notes">In some cases constraints like minHeight can cause layout failures</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9714</span> <span class="ticket-notes">Layout Managers: Complex Layout: The field is void in editable mode when switched using "Tab" key in keyboard.</span>
</li>
</ul>
</li>
<li class="component">Locale (3)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7179</span> <span class="ticket-notes">Missing translation for TextField blankText config in cs locale</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7426</span> <span class="ticket-notes">Locale override remains in German Locale file and comments state they should be removed for 4.1.x</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9580</span> <span class="ticket-notes">Polish translation targets msg property of AbstractView for localized text but should be loadingText</span>
</li>
</ul>
</li>
<li class="component">MVC (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-9486</span> <span class="ticket-notes">Application inheritance does not work properly</span>
</li>
</ul>
</li>
<li class="component">Menu (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-9296</span> <span class="ticket-notes">Menu with floating false is not positioned properly in right aligned HTML</span>
</li>
</ul>
</li>
<li class="component">Misc (3)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-8419</span> <span class="ticket-notes">MessageBox does not respect construction-time configs vs those passed to each show call</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9391</span> <span class="ticket-notes">LTR scrolling is not handled correctly when RTL overrides are included</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9877</span> <span class="ticket-notes">RowNumberer column header shows ellipsis in IE8</span>
</li>
</ul>
</li>
<li class="component">Panel (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-9823</span> <span class="ticket-notes">the *-{ui} class is not being added to the header of a panel</span>
</li>
</ul>
</li>
<li class="component">Selection Model (3)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-9003</span> <span class="ticket-notes">Grid selection range doesn't select correctly</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9288</span> <span class="ticket-notes">Row selection model does not handle vetoed mousedown events</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9357</span> <span class="ticket-notes">No way to restrict method of deselection in single selection model to ctrl+click as it was in previous versions</span>
</li>
</ul>
</li>
<li class="component">Tabs (2)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7337</span> <span class="ticket-notes">Nested tab panels don't maintain constraint or masking with windows</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9625</span> <span class="ticket-notes">Side tabs throw exception if tabs are hidden initially.</span>
</li>
</ul>
</li>
<li class="component">Theme (4)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-8453</span> <span class="ticket-notes">Tree lines have 1px gaps in Neptune theme</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8749</span> <span class="ticket-notes">Neptune - Create color variables for Global Error (red) and Confirmation (green)</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9423</span> <span class="ticket-notes">Accessibility theme needs tool icons for window move and resize</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9824</span> <span class="ticket-notes">There is no variable to control the base path of resources used in the CSS output</span>
</li>
</ul>
</li>
<li class="component">ToolTips (2)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-8824</span> <span class="ticket-notes">Tooltip cuts off content on Chrome</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8935</span> <span class="ticket-notes">Tooltips aligning using left origin when in RTL mode</span>
</li>
</ul>
</li>
<li class="component">Tree (8)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-8327</span> <span class="ticket-notes">Ext.tree.Panel ignores value of Ext.enableFx</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9229</span> <span class="ticket-notes">remote tree node expand not take proxy.extraParams set at beforeexpand</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9414</span> <span class="ticket-notes">Dropping to tree from grid causes JavaScript error due to nodeHighlightOnDrop</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9462</span> <span class="ticket-notes">Tree node arrow in IE10 do not show expand state properly</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9511</span> <span class="ticket-notes">beforeitemsexpand should fire before beforeload</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9515</span> <span class="ticket-notes">expandAll's callback is called for the last node in every descendant non-leaf</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9798</span> <span class="ticket-notes">Trees : Locking Tree Grid: Unable to check or uncheck the check boxes under ‚ÄúDone‚Äù column when any of the columns are hidden</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9832</span> <span class="ticket-notes">Combination exampes: Kitchen Sink: Trees: Two Trees: Unable to expand/collapse & move on the folder in the tree panel in a specific scenario.</span>
</li>
</ul>
</li>
Total: 133</ul>
<h2>Known Issues</h2>
<ul>
<li class="component">Animation (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-5487</span> <span class="ticket-notes">accordion animation doesn't always complete if you click frequently</span>
</li>
</ul>
</li>
<li class="component">Charts (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-5108</span> <span class="ticket-notes">can't create label for type area series</span>
</li>
</ul>
</li>
<li class="component">Core (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-4942</span> <span class="ticket-notes">Element#tgetWidth() returns an incorrect result for naturally widthed absolutely positioned elements in some cases.</span>
</li>
</ul>
</li>
<li class="component">Data (5)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-3316</span> <span class="ticket-notes">Ext.ux.grid.FiltersFeature cannot restore state</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-4319</span> <span class="ticket-notes">Use a parameter other than 'id' for server calls</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-4335</span> <span class="ticket-notes">Duplicate records when calling sync() on a autoSync store</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-4372</span> <span class="ticket-notes">Grid Filtering Example: Bug with database return packet</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6881</span> <span class="ticket-notes">AMF Packet does not support AMF3 objects with externalizable traits</span>
</li>
</ul>
</li>
<li class="component">Documentation (2)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-4296</span> <span class="ticket-notes">Ext JS 4 and Sencha Touch Docs examples fail on Chromebook, can't use Example viewer, ReferenceError: Ext is not defined</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-5156</span> <span class="ticket-notes">Update documentation that fields (id,text,leaf) are expected</span>
</li>
</ul>
</li>
<li class="component">Examples (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-5997</span> <span class="ticket-notes">Tabs: Group Tabs:Form Layout UI get truncated on IE6</span>
</li>
</ul>
</li>
<li class="component">Forms (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-2081</span> <span class="ticket-notes">Issue with "Bullet list" in the form widget editor</span>
</li>
</ul>
</li>
<li class="component">Grid (3)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-4091</span> <span class="ticket-notes">Grid filters: initial value can be set, but it is not applied</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-5125</span> <span class="ticket-notes">FiltersFeature - Updating column header class when using a column group</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-5607</span> <span class="ticket-notes">Grid: getEditorParent is ignored - nested cell editing is not possible</span>
</li>
</ul>
</li>
<li class="component">Layouts (3)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-3704</span> <span class="ticket-notes">Ext.layout.container.Box: wrong children margins if using CSS rules</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-4768</span> <span class="ticket-notes">Border Layout : regions overlap when size (or size constraint) won't allow all regions to fit container</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7497</span> <span class="ticket-notes">Form layout with shrink-wrapping in either dimension produces a layout failure</span>
</li>
</ul>
</li>
<li class="component">Misc (4)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-4545</span> <span class="ticket-notes">Kitchen Sink - Basic Tabs : By default tab headers are not displaying in Basic tabs.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-4937</span> <span class="ticket-notes">Combination Examples : Web Desktop : Notepad :Displaying errors in error console upon double clicking on empty space in the note pad.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-5254</span> <span class="ticket-notes"> HTMLEditor.insertAtCursor issues in "Source Edit"; mode</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8357</span> <span class="ticket-notes">Element boxWrap is not supported in Neptune theme</span>
</li>
</ul>
</li>
<li class="component">Panel (3)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-5488</span> <span class="ticket-notes">Panel collapse/expand behavior not as expected when called on hidden panel</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-5489</span> <span class="ticket-notes">preventHeader not honored when panel is programmatically collapsed.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-5544</span> <span class="ticket-notes">Intermittent issue with collapseOnDblClick set to true on IE</span>
</li>
</ul>
</li>
<li class="component">Tabs (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-3625</span> <span class="ticket-notes">TabPanel: defaults: closable true not configurable</span>
</li>
</ul>
</li>
Total: 26</ul>
</div>
<!-- Paste release notes after a release below here... -->
<!-- ************************************************************************** -->
<div class="release">
<h1>Release Notes for Ext JS 4.2.1 Beta 1</h1>
<p class="notes">
Release Date: April 10, 2013<br>
Version Number: 4.2.1.744
</p>
<h2>New Features</h2>
<ul>
<li class="component">Core (2)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7969</span> <span class="ticket-notes">There should be an easy way to reset a color picker</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9019</span> <span class="ticket-notes">constrainTo needs an option to restrict keep constrained item away from outer edges of the area</span>
</li>
</ul>
</li>
<li class="component">Examples (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-9276</span> <span class="ticket-notes">Add usage of RowExpander to KS BigData grid example.</span>
</li>
</ul>
</li>
<li class="component">Forms (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-8947</span> <span class="ticket-notes">ComboBox should have anyMatch and caseSensitive options</span>
</li>
</ul>
</li>
<li class="component">MVC (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-9070</span> <span class="ticket-notes">Controllers loaded from other controllers should be supported</span>
</li>
</ul>
</li>
Total: 5</ul>
<h2>Bugs Fixed</h2>
<ul>
<li class="component">Core (7)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-8568</span> <span class="ticket-notes">getPlugin fails if plugins is not declared as an array</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9049</span> <span class="ticket-notes">Date parse using "m/Y" format wraps "end of month" into "next month" depending on current date</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9101</span> <span class="ticket-notes">Box layout's menu overflow handler puts overflow menu at right in RTL mode. Should go on left.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9122</span> <span class="ticket-notes">Capturing listeners aren't removed from DOM element in Ext.EventManager.removeListener()</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9151</span> <span class="ticket-notes">Ext.util.MixedCollection.sortByKey does not work</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9240</span> <span class="ticket-notes">Container insert and move methods do not respect component instances vs indexes</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9342</span> <span class="ticket-notes">Container does not recurse into floatingItems in getRefItems breaking ComponentQuery for floating descendants</span>
</li>
</ul>
</li>
<li class="component">Data (4)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-9074</span> <span class="ticket-notes">Combo does not respect autoLoad:false with remote filter</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9176</span> <span class="ticket-notes">Updating a record in grouped store, trigger remove action on the store's proxy</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9184</span> <span class="ticket-notes">Configuring a Store with groupField and getGroupString doesn't work.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9201</span> <span class="ticket-notes">TreeStore setProxy method doesn't return the proxy object</span>
</li>
</ul>
</li>
<li class="component">Direct (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-9333</span> <span class="ticket-notes">Direct call doesn't work with buffering disabled in 4.2.0</span>
</li>
</ul>
</li>
<li class="component">Examples (2)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-9226</span> <span class="ticket-notes">Closing theme changer dialog breaks window resizing</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9232</span> <span class="ticket-notes">MVC:Feed Viewer: Adding new feed displays JS error</span>
</li>
</ul>
</li>
<li class="component">Forms (22)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7436</span> <span class="ticket-notes">Fileupload button doesn't expand height to cover button in tall file field component</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7764</span> <span class="ticket-notes">Ext.form.Panel does not relay updateRecord from BasicForm</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7836</span> <span class="ticket-notes">Display field does not report proper height when text wraps and gets clipped or overlapped</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7877</span> <span class="ticket-notes">Calling setValue on textarea with a numeric value throws JS error</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8250</span> <span class="ticket-notes">Ext.slider.Multi setMinValue and setMaxValue don't fire change event</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8784</span> <span class="ticket-notes">FieldContainer invalidCls causes double error indicators</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8950</span> <span class="ticket-notes">Buttons blur themselves on invocation of their handlers making them and their ancestor hierarchy keyboard-inaccessible</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8960</span> <span class="ticket-notes">File field can overlap things if buttonOnly is true</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9075</span> <span class="ticket-notes">Destroying a combobox does not clean up the KeyNav</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9100</span> <span class="ticket-notes">RTL - form fields on a toolbar are misaligned in IE quirks</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9168</span> <span class="ticket-notes">Items are not always removed from form when destroyed</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9169</span> <span class="ticket-notes">Overflow menu trigger button is placed at right side of editor in RTL mode</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9182</span> <span class="ticket-notes">form.submit() with fileuploadfield does not trigger failure handler for HTTP errors</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9185</span> <span class="ticket-notes">Combobox with large fieldLabel can cause misplacement of picker</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9237</span> <span class="ticket-notes">Slider with increment configured adjusts the maxValue</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9260</span> <span class="ticket-notes">hiddenfield occupies the visile place in the form</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9266</span> <span class="ticket-notes">Combo trackOver:false does not disable overItemCls tracking</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9274</span> <span class="ticket-notes">File input element covers text field and steals clicks displaying file browser</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9287</span> <span class="ticket-notes">Basicform keeps reference of destroyed items</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9335</span> <span class="ticket-notes">Button of file field component does not render correctly in RTL mode</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9344</span> <span class="ticket-notes">Bug with FieldSet and grid cell editing plugin</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9421</span> <span class="ticket-notes">DateField doesn't show the picker inside collapsed region</span>
</li>
</ul>
</li>
<li class="component">Grid (11)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-5922</span> <span class="ticket-notes">Locking, grouping and buffered rendering do not work together.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6806</span> <span class="ticket-notes">Grid locking and row editing do not work together</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9077</span> <span class="ticket-notes">Grid headers do not have proper gradient stretching when sliced for IE</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9102</span> <span class="ticket-notes">Mouseover row highlighting not working in wrapped rows.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9141</span> <span class="ticket-notes">After ending cell editing with the Enter key, keyboard navigation no longer works.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9195</span> <span class="ticket-notes">grid reconfigure without store throws JS error</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9214</span> <span class="ticket-notes">Grid cell edit with group feature not updating values</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9224</span> <span class="ticket-notes">RowExpander doesn't fire events on the proper grid view when locking</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9251</span> <span class="ticket-notes">on grid's record destroy, the selectionchange event is not fired</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9253</span> <span class="ticket-notes">Changing the group field value of a record in a grouped grid throws an error.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9268</span> <span class="ticket-notes">Ext.grid.Panel allowDeselect config has no effect</span>
</li>
</ul>
</li>
<li class="component">Layouts (3)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-8553</span> <span class="ticket-notes">Text wraps/clips in IE10 (in tooltips for example) because Direct2D rounding bug is not properly detected</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9116</span> <span class="ticket-notes">Hightlight focus doesn't completely cover under overflow menu options</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9234</span> <span class="ticket-notes">Border layout does not apply child margins on reversed sides in RTL</span>
</li>
</ul>
</li>
<li class="component">Locale (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-9340</span> <span class="ticket-notes">Datepicker is not picking up localized text properly</span>
</li>
</ul>
</li>
<li class="component">MVC (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-9105</span> <span class="ticket-notes">In controller using views: 'Microsoft.view.MyView' generate many requests</span>
</li>
</ul>
</li>
<li class="component">Menu (2)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-9099</span> <span class="ticket-notes">Grouped menu check items display checkbox</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9104</span> <span class="ticket-notes">MenuManager's mousedown clickhandler doesn't always work on IE</span>
</li>
</ul>
</li>
<li class="component">Misc (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-9143</span> <span class="ticket-notes">Ext.isIterable returns true for MixedCollection</span>
</li>
</ul>
</li>
<li class="component">Panel (2)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-8589</span> <span class="ticket-notes">Panel ghost is not assigned the proper z-index in some cases</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9330</span> <span class="ticket-notes">Collapsed panels that need an additional Header do not propagate margins to that header</span>
</li>
</ul>
</li>
<li class="component">Selection Model (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-8279</span> <span class="ticket-notes">Error when trying to select a record while using CellModel</span>
</li>
</ul>
</li>
<li class="component">Theme (3)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-3570</span> <span class="ticket-notes">Ext JS 4 Themes - hardcoded variable colors</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9103</span> <span class="ticket-notes">ext-theme-neptune-all-rtl.css exceeds IE's maximum number of rules for a single stylesheet.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-9160</span> <span class="ticket-notes">Toggle buttons in toolbar have incorrect gradients in Gray theme</span>
</li>
</ul>
</li>