-
Notifications
You must be signed in to change notification settings - Fork 0
/
release-notes.html
11043 lines (10889 loc) · 814 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.0 Beta 2</h1>
<p class="notes">
Release Date: January 8, 2013<br>
Version Number: 4.2.0.265
</p>
<h2>Bugs Fixed</h2>
<ul>
<li class="component">Core (5)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-8042</span> <span class="ticket-notes">Ext.utils.CSS.getRule - always throws error</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8064</span> <span class="ticket-notes">Modal mask doesn't appear in Chrome and IE9</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8079</span> <span class="ticket-notes">Grid grouping labels not translated (at least for German)</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8117</span> <span class="ticket-notes">Portuguese locales: wrong day and month names</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8136</span> <span class="ticket-notes">Ext.String.repeat with negative count infinite loop</span>
</li>
</ul>
</li>
<li class="component">Direct (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-8021</span> <span class="ticket-notes">Ext.Direct API methods should not be resolved at construction time</span>
</li>
</ul>
</li>
<li class="component">Documentation (2)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7881</span> <span class="ticket-notes">Explain interaction of reference types and configs</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7992</span> <span class="ticket-notes">Grid guide is not updated with 4.2 improvements</span>
</li>
</ul>
</li>
<li class="component">Examples (2)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-8009</span> <span class="ticket-notes">Typo in desktop example</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8029</span> <span class="ticket-notes">Combination Examples: Web Desktop: 'More Items' sub menu is displayed on top left corner of the page when mouse hovered</span>
</li>
</ul>
</li>
<li class="component">Forms (3)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-6999</span> <span class="ticket-notes">fileuploadfield on a form is clearing selected file path after submit button is pressed</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7918</span> <span class="ticket-notes">Checkboxgroup allowBlank:false and validitychange event not firing on first click</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7945</span> <span class="ticket-notes">Error handling issue while submitting forms with file uploads in IE9</span>
</li>
</ul>
</li>
<li class="component">Grid (21)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7582</span> <span class="ticket-notes">minHeight on table header causes layout faults if there is a scrollbar</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7775</span> <span class="ticket-notes">The hmenu-asc.gif icon for "Sort ascending" has the arrow pointing down. It's identical to the "sort descending" icon.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7895</span> <span class="ticket-notes">Grouping Feature not able to show/hide columns when enableGroupingMenu: false</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7949</span> <span class="ticket-notes">Canceling new rows in RESTful store grid panel leaves behind a blank row</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7952</span> <span class="ticket-notes">Locked grid row heights fail to sync when OSX scroll bars turned off.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7961</span> <span class="ticket-notes">Menus are constrained incorrectly. They should not have ownerCt configured.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7968</span> <span class="ticket-notes">GroupGrid can hide all columns in certain scenario</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7982</span> <span class="ticket-notes">Summary feature causes errors if data is modified and view is not rendered</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7983</span> <span class="ticket-notes">Grouping grid headers do not always fill the horizontal space</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7987</span> <span class="ticket-notes">Grouping grid crash on record update</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8003</span> <span class="ticket-notes">Grouping grid allows grouping by last visible column</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8005</span> <span class="ticket-notes">Grid selection model events do not fire after reconfigure</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8014</span> <span class="ticket-notes">Double clicking to auto-size an unresizable column causes JS error</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8038</span> <span class="ticket-notes">Grid: view isn't removed from Scroll Manager when grid is destroyed</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8043</span> <span class="ticket-notes">Grid columns with no explicit renderer definition are not shown</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8046</span> <span class="ticket-notes">RowSelectionModel Keyboard navigation does not work.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8083</span> <span class="ticket-notes">buffered grid checkbox selection model does not support select all </span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8115</span> <span class="ticket-notes">hidden: true of grid column with inner columns causes error</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8144</span> <span class="ticket-notes">Grids : Grouping : Displaying Js error upon navigating the records in the grid in a specific scenario.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8145</span> <span class="ticket-notes">Grid view refresh and toggleSummaryRow not working as expected</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8161</span> <span class="ticket-notes">Buffered Grids No Longer Work In Tab Panels</span>
</li>
</ul>
</li>
<li class="component">Layouts (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7973</span> <span class="ticket-notes">Layout failure in PropertyGrid</span>
</li>
</ul>
</li>
<li class="component">MVC (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-6032</span> <span class="ticket-notes">Controller shouldn't require selector when ref has autoCreate flag</span>
</li>
</ul>
</li>
<li class="component">Menu (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-8167</span> <span class="ticket-notes">Ext.menu.CheckItem: checked not a boolean until rendered</span>
</li>
</ul>
</li>
<li class="component">Misc (4)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-5226</span> <span class="ticket-notes">Focus on OK button in MessageBox</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6014</span> <span class="ticket-notes">Incomplete Localisation for LoadMask and AbstractView</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8052</span> <span class="ticket-notes">4.2.0 beta and ent-beta builds fail sencha generate app with YUI disabled</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-8087</span> <span class="ticket-notes">Delegate Ext.Object.chain to Object.create</span>
</li>
</ul>
</li>
<li class="component">Panel (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7981</span> <span class="ticket-notes">Crash when expanding collapsed/hidden panel</span>
</li>
</ul>
</li>
<li class="component">Toolbars (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-8041</span> <span class="ticket-notes">more.gif in x-toolbar-more-icon class is not RTL</span>
</li>
</ul>
</li>
<li class="component">Tree (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7916</span> <span class="ticket-notes">Tree node removeAll(true) throws exception when there's a child node.</span>
</li>
</ul>
</li>
Total: 44</ul>
<h2>New Features</h2>
<ul>
<li class="component">Charts (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-5604</span> <span class="ticket-notes">With multiple Column series, columns can completely obscure each other. </span>
</li>
</ul>
</li>
<li class="component">Core (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7564</span> <span class="ticket-notes">Add Ext.Object.isEmpty method</span>
</li>
</ul>
</li>
<li class="component">Data (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7400</span> <span class="ticket-notes">Added CORS support for IE (XDR)</span>
</li>
</ul>
</li>
<li class="component">Forms (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-8073</span> <span class="ticket-notes">HtmlEditor should be a FieldContainer and use standard container layouts</span>
</li>
</ul>
</li>
<li class="component">Layouts (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-8072</span> <span class="ticket-notes">Panel shrinkWrap should be able to include docked items in its calculation</span>
</li>
</ul>
</li>
<li class="component">MVC (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7429</span> <span class="ticket-notes">Controllers should be able to listen to non-Component events</span>
</li>
</ul>
</li>
<li class="component">Performance (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-8092</span> <span class="ticket-notes">Data and Tree performance optimizations</span>
</li>
</ul>
</li>
<li class="component">Tree (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7955</span> <span class="ticket-notes">Trees should be able to use buffered rendering</span>
</li>
</ul>
</li>
Total: 8</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 (2)
<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>
<li class="ticket">
<span class="ticket-number">EXTJSIV-2425</span> <span class="ticket-notes">HTMLEditor corrupted when changing background color of selection</span>
</li>
</ul>
</li>
<li class="component">Grid (4)
<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>
<li class="ticket">
<span class="ticket-number">EXTJSIV-5922</span> <span class="ticket-notes">Infinite grid and grouping feature do not work together</span>
</li>
</ul>
</li>
<li class="component">Layouts (4)
<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>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7667</span> <span class="ticket-notes">Table layout causes child containers using auto layout to be sized wrongly in some browsers</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-5130</span> <span class="ticket-notes">Neptune theme missing resources</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>
</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 (3)
<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>
<li class="ticket">
<span class="ticket-number">EXTJSIV-4421</span> <span class="ticket-notes">x-tab-top-over never inserted into any element</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7381</span> <span class="ticket-notes">RTL - Tab bar scrollers do not work</span>
</li>
</ul>
</li>
Total: 31</ul>
</div>
<!-- Paste release notes after a release below here... -->
<!-- ************************************************************************** -->
<div class="release">
<h1>Release Notes for Ext JS 4.2.0 Beta</h1>
<p class="notes">
Release Date: December 11, 2012<br>
Version Number: 4.2.0.179
</p>
<h2>Bugs Fixed</h2>
<ul>
<li class="component">Charts (6)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-3394</span> <span class="ticket-notes">Charts - Area charts - December Month Name is missing when resize and also minimizing the chart</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6011</span> <span class="ticket-notes">Area chart numeric x-axis display bug</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7300</span> <span class="ticket-notes">Charts : Pie chart : Displaying JS error upon mouse hovering on chart legends.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7759</span> <span class="ticket-notes">Chart ColumnSeries yField fails if not an array</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7771</span> <span class="ticket-notes">Grouped Column Chart With One Group Has Incorrect Label</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7876</span> <span class="ticket-notes">Charts: Line and Radar series: markers can't be styled with the renderer function</span>
</li>
</ul>
</li>
<li class="component">Core (3)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-4453</span> <span class="ticket-notes">Method `Ext.Element.setStyle()` with `-ms-transform` does not work.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7534</span> <span class="ticket-notes">Panel border: false option breaks rendering of content</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7717</span> <span class="ticket-notes">Internal usage of Ext.fly() overwrites user's Ext.fly singleton.</span>
</li>
</ul>
</li>
<li class="component">Data (2)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-3455</span> <span class="ticket-notes">Model constructor does not set the idProperty when the id is specified as an argument to the constructor.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7287</span> <span class="ticket-notes">A grouped store should automatically resort when data modified</span>
</li>
</ul>
</li>
<li class="component">Documentation (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7805</span> <span class="ticket-notes">Ext.define function form does not support overrides</span>
</li>
</ul>
</li>
<li class="component">Examples (10)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-2288</span> <span class="ticket-notes">Failed test: Verify the menu display when user right click on the Desktop</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-4842</span> <span class="ticket-notes">Combination Examples - Web Desktop : Left, Center & Right alignments are not properly working for "Notepad"</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-5464</span> <span class="ticket-notes">Combination Examples - Kitchen sink - Displaying JS error upon clicking on ‚Äö√Ñ√∂‚àö√ë‚àö‚à´Titled Tab panels‚Äö√Ñ√∂‚àö√ë‚àöœÄ</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6154</span> <span class="ticket-notes">Combination Examples: Web Desktop: Notepad: Alignment is applying for whole text in text area and not just for selected line of text.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6352</span> <span class="ticket-notes">Combination Examples : Feed Viewer: Tab size is not adjusting accordingly once after selecting the ‚Äö√Ñ√∂‚àö√ë‚àö‚à´Yahoo Software News‚Äö√Ñ√∂‚àö√ë‚àöœÄ under Feeds panel</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7294</span> <span class="ticket-notes">Combination Examples : Calendar : Displaying JS error while saving the event.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7617</span> <span class="ticket-notes">Combination Examples : Web desktop : Displaying Js error upon double clicking on "maximize" button in the "About ExtJS" window.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7658</span> <span class="ticket-notes">Combination Example: Web desktop: Note pad is not displaying upon moving in a specific scenario.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7700</span> <span class="ticket-notes">Grid filter menu icon missing</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7882</span> <span class="ticket-notes">Combination Examples : Right-to-Left (RTL) (New) : East panel getting expand and collapse when we expand the "West" panel.</span>
</li>
</ul>
</li>
<li class="component">Forms (9)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-4477</span> <span class="ticket-notes">Ext.form.field.File: no tooltip on the upload button</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-5288</span> <span class="ticket-notes">Forms : Shopping Cart Checkout: Unable to delete the data from the phone number and postal code fields</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-5672</span> <span class="ticket-notes">Forms: MultiSelect and ItemSelector: Down arrow and up arrow are not functional when multiple items are selected in ItemSelector List</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-5856</span> <span class="ticket-notes">Combination Examples : Web Desktop: Text in the notepad getting erased by clicking the "Tab" key.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6023</span> <span class="ticket-notes">Ext.ux.form.ItemSelector with delimited cannot read delimited values</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7085</span> <span class="ticket-notes">HtmlEditor: clicking on down arrow on forecolor or backcolor button deselects text in IE</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7711</span> <span class="ticket-notes">Selecting same highlighted item in combo does not close listbox</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7803</span> <span class="ticket-notes">Down arrow on picker fields does not move focus to popup</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7921</span> <span class="ticket-notes">Forms: inputEl is not properly destroyed and will leak memory</span>
</li>
</ul>
</li>
<li class="component">Grid (13)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-5794</span> <span class="ticket-notes">Grouping grid with a summary for each group and the entire grid</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-5817</span> <span class="ticket-notes">Grids - Grouping Grid - Grouping grid displaying blank in a specific scenario </span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-5898</span> <span class="ticket-notes">Grids- Infinite scroll grid- No data is displaying upon clicking Author column header multiple times.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6144</span> <span class="ticket-notes">Grouping Grid column menu items are not showing the proper checked/enabled state in all cases</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6508</span> <span class="ticket-notes">Grids: RESTful Store with GridPanel and RowEditor: Value under ‚Äö√Ñ√∂‚àö√ë‚àö‚à´ID‚Äö√Ñ√∂‚àö√ë‚àöœÄ column is slightly moved down on row editor in a particular scenario</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-7449</span> <span class="ticket-notes">CellEditor does not scroll with grid</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7472</span> <span class="ticket-notes">Grid ‚Äö√Ñ√∂‚àö√ë‚àö¬® Grouped Header ‚Äö√Ñ√∂‚àö√ë‚àö¬® Able to hide all columns in a specific scenario </span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7630</span> <span class="ticket-notes">Grid : Infinite Scrolling: Getting Js error when click on Expand / Collapse icons after selecting ‚Äö√Ñ√∂‚àö√ë‚àö‚à´Group by this field‚Äö√Ñ√∂‚àö√ë‚àöœÄ option in the drop down menu</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7827</span> <span class="ticket-notes">Grid TableView's trackOver config does not honour false setting.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7853</span> <span class="ticket-notes">Grids : Infinite Grid with remote filter. Load never completes if filter returned no results.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7932</span> <span class="ticket-notes">CellEditing + Nav error when grid is empty</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7953</span> <span class="ticket-notes">Paging Grid Example: The text preview spans 2 columns instead of 3 </span>
</li>
</ul>
</li>
<li class="component">Layouts (8)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-4345</span> <span class="ticket-notes">Layout does not properly handle min/maxWidth/Height if in autoWidth/Height mode</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6030</span> <span class="ticket-notes">Ext.Msg.alert fails is called while layouts are globally suspended.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7591</span> <span class="ticket-notes">Expand border collapsed region from floated disables further collapsing.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7593</span> <span class="ticket-notes">Border layout shuffles DOM order upon layout. This causes removed items to lose layout.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7687</span> <span class="ticket-notes">First panel in accordion multi layout is always expanded</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7688</span> <span class="ticket-notes">Unable to specify non-collapsible panels in accordion layout</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7744</span> <span class="ticket-notes">Switching to a shrinkwrap dimension should clear that dimension in the DOM on layout</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7858</span> <span class="ticket-notes">Closing a recently collapsed region in a border layout results in a removal error</span>
</li>
</ul>
</li>
<li class="component">Menu (2)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7304</span> <span class="ticket-notes">Button Menu width does not resize when word length changes</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7823</span> <span class="ticket-notes">Menu IE7 CSS issue: too wide and too white separators</span>
</li>
</ul>
</li>
<li class="component">Misc (19)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-4015</span> <span class="ticket-notes">Charts Die at 2147483648 - Max Integer</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-5483</span> <span class="ticket-notes">Accessibility : Binding a Grid to a Form : Active state is missing on rating radio buttons through keyboard tab.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-5533</span> <span class="ticket-notes">Combination Examples : Ext JS Calender - The event drag and drop is not functioning as desired</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-5591</span> <span class="ticket-notes">JS Calendar - Unable to scroll up/down using arrow keys to select time field.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-5678</span> <span class="ticket-notes">[4.1 RC1] Scoped CSS Incorrect in IE7/8</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-5881</span> <span class="ticket-notes">Tab:TabsOverflowMenu: Tabs are not seen in the drop-down in the mentioned scenario</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6017</span> <span class="ticket-notes">Miscellaneous : Panels : ‚Äö√Ñ√∂‚àö√ë‚àö‚à´Masked Panel with a really long title‚Äö√Ñ√∂‚àö√ë‚àöœÄ is not displaying title when panel is collapsed in Opera 11.61</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6130</span> <span class="ticket-notes">Drag and Drop : Grid to Grid DnD : Displaying JS error while moving records from first grid to second grid with "Ctrl" key.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7015</span> <span class="ticket-notes">Padding causes box layout overflow scroller to never disable scroll right button</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7081</span> <span class="ticket-notes">Offset start and limit calculated incorrectly for infinite grid</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7095</span> <span class="ticket-notes">Not triggered and unefficient summary update.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7207</span> <span class="ticket-notes">Constrained floaters: Should maintain position but then constrain upon floatParent resize and move.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7374</span> <span class="ticket-notes">RTL - Themes Example - Message Box does not show any content, just an empty frame.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7390</span> <span class="ticket-notes">RTL - animation of width in rtl mode uses an incorrect anchor point</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7447</span> <span class="ticket-notes">Miscellaneous: Slider: 'Vertical Slider with multiple thumbs' tool tips are misplaced in a scenario</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7470</span> <span class="ticket-notes">Border layout: expanding collapsed region caused iframe reloading</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7509</span> <span class="ticket-notes">Grid column header trigger gets cut off if header text is too wide in IE6 & IE quirks</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7603</span> <span class="ticket-notes">Windows -> Window Variations: Constrained windows position is changing or going outside the window, when Constraining window is moved.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7776</span> <span class="ticket-notes">ComponentQuery doesn't consider numeric zero as a value</span>
</li>
</ul>
</li>
<li class="component">Panel (3)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-5381</span> <span class="ticket-notes">Panel does not open after rapid fire expand/close</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7411</span> <span class="ticket-notes">RTL - Themes Example - collapsed east placeholder has incorrect padding on tool.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7740</span> <span class="ticket-notes">BorderLayout: 'hidden: true' is ignored if 'collapsed: true'</span>
</li>
</ul>
</li>
<li class="component">Selection Model (2)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7848</span> <span class="ticket-notes">SelectionModel selectionchange event triggered when not needed</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7903</span> <span class="ticket-notes">RowModel.onEditorTab doesn't handle cancelled beforeedit</span>
</li>
</ul>
</li>
<li class="component">Toolbars (2)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-5067</span> <span class="ticket-notes">Toolbars and Menus: Basic Toolbar: Space between 'Choose a color' and 'Dynamically added item' menu items is more in IE compared to other browsers</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7609</span> <span class="ticket-notes">Toolbar overflow button has no padding-right</span>
</li>
</ul>
</li>
<li class="component">Tree (2)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-6399</span> <span class="ticket-notes">TreeViewDragDrop plugin now has a sortOnDrop config to maintain sort state of target node.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7762</span> <span class="ticket-notes">Trees: Drag and Drop Reordering: Expand/ Collapse for couple of times display JS error</span>
</li>
</ul>
</li>
<li class="component">Window (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-6341</span> <span class="ticket-notes">Windows: Window Variations: Two floating windows ‚Äö√Ñ√∂‚àö√ë‚àö‚à´Constrained Window‚Äö√Ñ√∂‚àö√ë‚àöœÄ and ‚Äö√Ñ√∂‚àö√ë‚àö‚à´Header-Constrained Window‚Äö√Ñ√∂‚àö√ë‚àöœÄ are disappearing in a particular scenario</span>
</li>
</ul>
</li>
Total: 83</ul>
</div>
<div class="release">
<h1>Release Notes for Ext JS 4.1.3</h1>
<p class="notes">
Release Date: October 25, 2012<br>
Version Number: 4.1.3.548
</p>
<h2>Highlights</h2>
<p>The biggest change beyond bug fixes is the new build script based on
<a href="http://www.sencha.com/products/sencha-cmd">Sencha Cmd</a>. Go
to the SDK folder and run the following:</p>
<pre>
sencha ant build</pre>
<h2>Bugs Fixed</h2>
<ul>
<li class="component">Charts (9)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-5500</span> <span class="ticket-notes">Style for chart line series not applied</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6593</span> <span class="ticket-notes">Bars in bar chart are not aligned with labels using time axes</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6611</span> <span class="ticket-notes">Column chart with date axis does not render properly</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6931</span> <span class="ticket-notes">Labels on Time axis do not respect "step" config</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6974</span> <span class="ticket-notes">Custom chart theme - colors incorrectly applied with stacked columns</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6992</span> <span class="ticket-notes">Area chart x-axis does not handle ticks with different increments than the data points</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7180</span> <span class="ticket-notes">Grid update. Updating selected row refocuses that row stealing focus from any previously focused element.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7210</span> <span class="ticket-notes">Chart losing label contrast after highlight</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7220</span> <span class="ticket-notes">Some series charts that do not have a Category Axis defined do not render</span>
</li>
</ul>
</li>
<li class="component">Core (5)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-6803</span> <span class="ticket-notes">Element content updating fails to update IMG src on IE.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7091</span> <span class="ticket-notes">Accessibility: Keyboard Feed Viewer: Unhiding √î√∏Œ©Author√î√∏Œ© column displays JS error</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7309</span> <span class="ticket-notes">Missing key:value in Ext.Date.monthNumbers of the ext-lang-fr.js file</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7484</span> <span class="ticket-notes">Splitter doesn't work with one hidden panel next to it</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7486</span> <span class="ticket-notes">Date: UTC time zone offsets are no longer calculated</span>
</li>
</ul>
</li>
<li class="component">Data (4)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7215</span> <span class="ticket-notes">DomQuery does not support an attribute selector with a "." in it</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7226</span> <span class="ticket-notes">Presence validation does not take boolean values into account</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7269</span> <span class="ticket-notes">Ext.data.NodeInterface remove doesn't call destroy if parent is null</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7422</span> <span class="ticket-notes">Field mapping should only honor 0 as a valid falsey value and ignore others</span>
</li>
</ul>
</li>
<li class="component">Documentation (2)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7102</span> <span class="ticket-notes">Missing itemclick in docs for Ext.chart.series.Series</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7463</span> <span class="ticket-notes">Update docs for propertygrid.nameColumnWidth</span>
</li>
</ul>
</li>
<li class="component">Draw (1)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7243</span> <span class="ticket-notes">Drawing √î√∏Œ© Logos - Couple of Browser logos are displaying in Black & white color in FF</span>
</li>
</ul>
</li>
<li class="component">Examples (5)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7123</span> <span class="ticket-notes">Chart examples use xtype on constructed objects</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7196</span> <span class="ticket-notes">Statusbar Advanced example problem hiding error popup</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7268</span> <span class="ticket-notes">Charts √î√∏Œ© Filled Radar Chart - Getting JS error when click on Animate Button</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7351</span> <span class="ticket-notes">Combination Examples - Web Desktop √î√∏Œ©Video is not playing and error √î√∏Œ©X√î√∏Œ© icon is displaying when select √î√∏Œ©About Ext JS√î√∏Œ© option in IE9</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7434</span> <span class="ticket-notes">Typo in text for maxSelections on both MultiSelect and ItemSelector</span>
</li>
</ul>
</li>
<li class="component">Forms (11)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-6069</span> <span class="ticket-notes">ComboBox reports incorrect value when non-unique display fields are used</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6405</span> <span class="ticket-notes">Default ComboBox shrinkWrap width should match TextField</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6959</span> <span class="ticket-notes">Focus lost when error tooltip displayed on modal window/form</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6964</span> <span class="ticket-notes">HtmlEditor text highlight color is not working under html editor under Form-3 in FF browsers</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7062</span> <span class="ticket-notes">Focus on combobox and datepicker removes the ability to close the row editor with "esc" key</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7117</span> <span class="ticket-notes">ComboBox forceSelection doesn't fire select event</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7204</span> <span class="ticket-notes">Ext.form.field.File could not be fully enabled after being disabled</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7206</span> <span class="ticket-notes">A filefield initially hidden does not render the browse button correctly when shown</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7314</span> <span class="ticket-notes">Forms √î√∏Œ© Checkout form - Validation tool tip message is displaying even after entering required data in the text fields</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7348</span> <span class="ticket-notes">NumberField ignores spinDownEnabled and spinUpEnabled configs</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7396</span> <span class="ticket-notes">HtmlEditor: Editor is still focused after Source Edit is toggled off</span>
</li>
</ul>
</li>
<li class="component">Grid (19)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-6431</span> <span class="ticket-notes">Grouping grid allows grouping by last visible column</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7010</span> <span class="ticket-notes">Remote grid filtering doesn't work with locked column</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7051</span> <span class="ticket-notes">Infinite grid: can't scroll to last row when cell height is changed</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7127</span> <span class="ticket-notes">Deleting row above selected cell of a grid causes multiple cells to appear selected</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7140</span> <span class="ticket-notes">Cannot call method 'getXY' of null error when scrolling buffered grid after creating new store with grid.reconfigure</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7166</span> <span class="ticket-notes">Buffered Grid scrollTo does not always reach specified scrollTop on IE</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7167</span> <span class="ticket-notes">Grid : Grid plugins : Unable to expand the gird rows when we lock all the columns in the grid.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7177</span> <span class="ticket-notes">Grids : Cell editing with grouping Feature. Navigation allowed into collapsed groups.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7211</span> <span class="ticket-notes">CellSelectionModel, grid editing plugin failed when used for TreePanel editing</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7214</span> <span class="ticket-notes">Locking grid gets in infinite loop when column locked config is set to false</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7225</span> <span class="ticket-notes">Grid: when using forceFit config, headers and columns are out of sync when resized</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7238</span> <span class="ticket-notes">Able to hide all columns when the one remaining column is menuDisabled</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7335</span> <span class="ticket-notes">Grid reconfigure without new store unbinds old store</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7336</span> <span class="ticket-notes">Grid column with locked false causes stack overflow</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7361</span> <span class="ticket-notes">Scroll delta difference when hovering locked and unlocked columns in FF15</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7451</span> <span class="ticket-notes">propertygrid: enableColumnResize and enableColumnMove configs don't work</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7495</span> <span class="ticket-notes">Grids:Grid Plugins: Double clicking on grid rows displays row expanded body with dotted line border</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7519</span> <span class="ticket-notes">Girds : Gird Plugins Examples : Displaying Js error while scrolling down in the grid with keyboard key.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7569</span> <span class="ticket-notes">Table Views itemupdate event's node param is not a node associated with the view.</span>
</li>
</ul>
</li>
<li class="component">Layouts (3)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7231</span> <span class="ticket-notes">Showing/Hiding panel in borderLayout shows/hides all spliter on the same level</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7358</span> <span class="ticket-notes">JavaScript error when grid toolbars switched (IE error only)</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7403</span> <span class="ticket-notes">Overflow Tool bar : √î√∏Œ©>>√î√∏Œ© (Menu extend /Menu trigger) button is not working</span>
</li>
</ul>
</li>
<li class="component">MVC (3)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7308</span> <span class="ticket-notes">Controller classes not in a 'controller' namespace fail during class creation</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7420</span> <span class="ticket-notes">Ext.application causes synchronous loading and mail fail on some models</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7547</span> <span class="ticket-notes">Incorrect MVC namespace determined for some classes</span>
</li>
</ul>
</li>
<li class="component">Menu (2)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-7265</span> <span class="ticket-notes">A checkbox is rendered on a checkmenuitem when the item is part of a radio group</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-7442</span> <span class="ticket-notes">A button with a menu crashes if all menu items are disabled and you tab from field</span>
</li>
</ul>
</li>
<li class="component">Misc (11)
<ul class="tickets">
<li class="ticket">
<span class="ticket-number">EXTJSIV-4070</span> <span class="ticket-notes">Modal containers allow tab out.</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-5450</span> <span class="ticket-notes">Focus lost when error tooltip displayed on modal window/form</span>
</li>
<li class="ticket">
<span class="ticket-number">EXTJSIV-6845</span> <span class="ticket-notes">Locking Grouping Grid: It is possible to hide all columns, resulting in a zero width grid.</span>