Container.html
36.5 KB
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>The source code</title>
<link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../resources/prettify/prettify.js"></script>
<style type="text/css">
.highlight { display: block; background-color: #ddd; }
</style>
<script type="text/javascript">
function highlight() {
document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
}
</script>
</head>
<body onload="prettyPrint(); highlight();">
<pre class="prettyprint lang-js"><span id='Ext-layout-container-Container'>/**
</span> * This class is intended to be extended or created via the {@link Ext.container.Container#layout layout}
* configuration property. See {@link Ext.container.Container#layout} for additional details.
*/
Ext.define('Ext.layout.container.Container', {
/* Begin Definitions */
extend: 'Ext.layout.Layout',
alternateClassName: 'Ext.layout.ContainerLayout',
mixins: {
elementCt: 'Ext.util.ElementContainer'
},
requires: [
'Ext.XTemplate'
],
type: 'container',
/* End Definitions */
<span id='Ext-layout-container-Container-cfg-itemCls'> /**
</span> * @cfg {String} itemCls
* An optional extra CSS class that will be added to the container. This can be useful for
* adding customized styles to the container or any of its children using standard CSS
* rules. See {@link Ext.Component}.{@link Ext.Component#componentCls componentCls} also.
*/
<span id='Ext-layout-container-Container-cfg-manageOverflow'> /**
</span> * @cfg {Number} [manageOverflow=0]
* One of the following values:
*
* - 0 if the layout should ignore overflow.
* - 1 if the layout should be rerun if scrollbars are needed.
* - 2 if the layout should also correct padding when overflowed.
*/
manageOverflow: 0,
<span id='Ext-layout-container-Container-method-beginCollapse'> /**
</span> * @private
* Called by an owning Panel before the Panel begins its collapse process.
* Most layouts will not need to override the default Ext.emptyFn implementation.
*/
beginCollapse: Ext.emptyFn,
<span id='Ext-layout-container-Container-method-beginExpand'> /**
</span> * @private
* Called by an owning Panel before the Panel begins its expand process.
* Most layouts will not need to override the default Ext.emptyFn implementation.
*/
beginExpand: Ext.emptyFn,
<span id='Ext-layout-container-Container-property-animatePolicy'> /**
</span> * An object which contains boolean properties specifying which properties are to be
* animated upon flush of child Component ContextItems. For example, Accordion would
* have:
*
* {
* y: true,
* height: true
* }
*
* @private
*/
animatePolicy: null,
childEls: [
<span id='Ext-layout-container-Container-property-overflowPadderEl'> /**
</span> * @property {Ext.Element} overflowPadderEl
* The element used to correct body padding during overflow.
*/
'overflowPadderEl'
],
renderTpl: [
'{%this.renderBody(out,values)%}'
],
usesContainerHeight: true,
usesContainerWidth: true,
usesHeight: true,
usesWidth: true,
<span id='Ext-layout-container-Container-cfg-reserveScrollbar'> /**
</span> * @cfg {Boolean} [reserveScrollbar=false]
* Set to `true` to leave space for a vertical scrollbar (if the OS shows space-consuming scrollbars) regardless
* of whether a scrollbar is needed.
*
* This is useful if content height changes during application usage, but you do not want the calculated width
* of child items to change when a scrollbar appears or disappears. The scrollbar will appear in the reserved space,
* and the calculated width of child Components will not change.
*
* @example
* Ext.define('Employee', {
* extend: 'Ext.data.Model',
* fields: [
* {name: 'rating', type: 'int'},
* {name: 'salary', type: 'float'},
* {name: 'name'}
* ]
* });
*
* function createFakeData(count) {
* var firstNames = ['Ed', 'Tommy', 'Aaron', 'Abe', 'Jamie', 'Adam', 'Dave', 'David', 'Jay', 'Nicolas', 'Nige'],
* lastNames = ['Spencer', 'Maintz', 'Conran', 'Elias', 'Avins', 'Mishcon', 'Kaneda', 'Davis', 'Robinson', 'Ferrero', 'White'],
* ratings = [1, 2, 3, 4, 5],
* salaries = [100, 400, 900, 1500, 1000000];
*
* var data = [];
* for (var i = 0; i < (count || 25); i++) {
* var ratingId = Math.floor(Math.random() * ratings.length),
* salaryId = Math.floor(Math.random() * salaries.length),
* firstNameId = Math.floor(Math.random() * firstNames.length),
* lastNameId = Math.floor(Math.random() * lastNames.length),
*
* rating = ratings[ratingId],
* salary = salaries[salaryId],
* name = Ext.String.format("{0} {1}", firstNames[firstNameId], lastNames[lastNameId]);
*
* data.push({
* rating: rating,
* salary: salary,
* name: name
* });
* }
* store.loadData(data);
* }
*
* // create the Data Store
* var store = Ext.create('Ext.data.Store', {
* id: 'store',
* model: 'Employee',
* proxy: {
* type: 'memory'
* }
* });
* createFakeData(10);
*
* var grid = Ext.create('Ext.grid.Panel', {
* title: 'Grid loaded with varying number of records',
* anchor: '100%',
* store: store,
* columns: [{
* xtype: 'rownumberer',
* width: 40,
* sortable: false
* },{
* text: 'Name',
* flex: 1,
* sortable: true,
* dataIndex: 'name'
* },{
* text: 'Rating',
* width: 125,
* sortable: true,
* dataIndex: 'rating'
* },{
* text: 'Salary',
* width: 125,
* sortable: true,
* dataIndex: 'salary',
* align: 'right',
* renderer: Ext.util.Format.usMoney
* }]
* });
*
* Ext.create('Ext.panel.Panel', {
* renderTo: document.body,
* width: 800,
* height: 600,
* layout: {
* type: 'anchor',
* reserveScrollbar: true // There will be a gap even when there's no scrollbar
* },
* autoScroll: true,
* items: grid,
* tbar: {
* defaults: {
* handler: function(b) {
* createFakeData(b.count);
* }
* },
* items: [{
* text: '10 Items',
* count: 10
* },{
* text: '100 Items',
* count: 100
* },{
* text: '300 Items',
* count: 300
* },{
* text: '1000 Items',
* count: 1000
* },{
* text: '5000 Items',
* count: 5000
* }]
* }
* });
*
*/
reserveScrollbar: false,
// Begin with no previous adjustments
lastOverflowAdjust: {
width: 0,
height: 0
},
constructor: function () {
this.callParent(arguments);
this.mixins.elementCt.constructor.call(this);
},
destroy : function() {
this.callParent();
this.mixins.elementCt.destroy.call(this);
},
initLayout: function() {
var me = this,
scrollbarWidth = Ext.getScrollbarSize().width;
me.callParent();
// Create a default lastOverflowAdjust based upon scrolling configuration.
// If the Container is to overflow, or we *always* reserve space for a scrollbar
// then reserve space for a vertical scrollbar
if (scrollbarWidth && me.manageOverflow && !me.hasOwnProperty('lastOverflowAdjust')) {
if (me.owner.autoScroll || me.reserveScrollbar) {
me.lastOverflowAdjust = {
width: scrollbarWidth,
height: 0
};
}
}
},
<span id='Ext-layout-container-Container-method-beginLayout'> /**
</span> * In addition to work done by our base classes, containers benefit from some extra
* cached data. The following properties are added to the ownerContext:
*
* - visibleItems: the result of {@link #getVisibleItems}
* - childItems: the ContextItem[] for each visible item
* - targetContext: the ContextItem for the {@link #getTarget} element
*/
beginLayout: function (ownerContext) {
this.callParent(arguments);
ownerContext.targetContext = ownerContext.getEl('getTarget', this);
this.cacheChildItems(ownerContext);
},
beginLayoutCycle: function (ownerContext, firstCycle) {
var me = this,
padEl = me.overflowPadderEl;
me.callParent(arguments);
// Begin with the scrollbar adjustment that we used last time - this is more likely to be correct
// than beginning with no adjustment at all
if (!ownerContext.state.overflowAdjust) {
ownerContext.state.overflowAdjust = me.lastOverflowAdjust;
}
if (firstCycle) {
if (me.usesContainerHeight) {
++ownerContext.consumersContainerHeight;
}
if (me.usesContainerWidth) {
++ownerContext.consumersContainerWidth;
}
}
if (padEl) {
padEl.setStyle('display', 'none');
}
},
completeLayout: function (ownerContext) {
// Cache the scrollbar adjustment
this.lastOverflowAdjust = ownerContext.state.overflowAdjust;
},
cacheChildItems: function (ownerContext) {
var context = ownerContext.context,
childItems = [],
items = this.getVisibleItems(),
length = items.length,
i;
ownerContext.childItems = childItems;
ownerContext.visibleItems = items;
for (i = 0; i < length; ++i) {
childItems.push(context.getCmp(items[i]));
}
},
cacheElements: function () {
var owner = this.owner;
this.applyChildEls(owner.el, owner.id); // from ElementContainer mixin
},
calculateContentSize: function (ownerContext, dimensions) {
var me = this,
containerDimensions = (dimensions || 0) | me.manageOverflow |
((ownerContext.widthModel.shrinkWrap ? 1 : 0) |
(ownerContext.heightModel.shrinkWrap ? 2 : 0)),
calcWidth = (containerDimensions & 1) || undefined,
calcHeight = (containerDimensions & 2) || undefined,
childItems = ownerContext.childItems,
length = childItems.length,
contentHeight = 0,
contentWidth = 0,
needed = 0,
props = ownerContext.props,
targetXY, targetX, targetY, targetPadding,
borders, child, childContext, childX, childY, height, i, margins, width, xy;
if (calcWidth) {
if (isNaN(props.contentWidth)) {
++needed;
} else {
calcWidth = undefined;
}
}
if (calcHeight) {
if (isNaN(props.contentHeight)) {
++needed;
} else {
calcHeight = undefined;
}
}
if (needed) {
// TODO - this is rather brute force... maybe a wrapping el or clientHeight/Width
// trick might help. Whatever we do, it must either work for Absolute layout or
// at least be correctable by an overridden method in that derived class.
for (i = 0; i < length; ++i) {
childContext = childItems[i];
child = childContext.target;
height = calcHeight && childContext.getProp('height');
width = calcWidth && childContext.getProp('width');
margins = childContext.getMarginInfo();
// getXY is the root method here (meaning that we cannot avoid getting both
// even if we need only one), so dip into the DOM if something is needed
if ((calcWidth && isNaN(child.x)) || (calcHeight && isNaN(child.y))) {
xy = child.el.getXY();
if (!targetXY) {
targetXY = ownerContext.targetContext.el.getXY();
borders = ownerContext.targetContext.getBorderInfo();
targetX = targetXY[0] + borders.left;
targetY = targetXY[1] + borders.top;
}
// not worth avoiding the possibly useless calculation here:
childX = xy[0] - targetX;
childY = xy[1] - targetY;
} else {
// not worth avoiding these either:
childX = child.x;
childY = child.y;
}
// XY includes the top/left margin
height += margins.bottom;
width += margins.right;
contentHeight = Math.max(contentHeight, childY + height);
contentWidth = Math.max(contentWidth, childX + width);
if (isNaN(contentHeight) && isNaN(contentWidth)) {
me.done = false;
return;
}
}
if (calcWidth || calcHeight) {
targetPadding = ownerContext.targetContext.getPaddingInfo();
}
if (calcWidth && !ownerContext.setContentWidth(contentWidth + targetPadding.right)) {
me.done = false;
}
if (calcHeight && !ownerContext.setContentHeight(contentHeight + targetPadding.bottom)) {
me.done = false;
}
/* add a '/' to turn on this log ('//* enables, '/*' disables)
if (me.done) {
var el = ownerContext.targetContext.el.dom;
Ext.log(this.owner.id, '.contentSize: ', contentWidth, 'x', contentHeight,
' => scrollSize: ', el.scrollWidth, 'x', el.scrollHeight);
}/**/
}
},
<span id='Ext-layout-container-Container-method-calculateOverflow'> /**
</span> * Handles overflow processing for a container. This should be called once the layout
* has determined contentWidth/Height. In addition to the ownerContext passed to the
* {@link #calculate} method, this method also needs the containerSize (the object
* returned by {@link #getContainerSize}).
*
* @param {Ext.layout.ContextItem} ownerContext
* @param {Object} containerSize
* @param {Number} dimensions A bit mask for the overflow managed dimensions. The 0-bit
* is for `width` and the 1-bit is for `height`. In other words, a value of 1 would be
* only `width`, 2 would be only `height` and 3 would be both.
*/
calculateOverflow: function (ownerContext, containerSize, dimensions) {
var me = this,
owner = me.owner,
manageOverflow = me.manageOverflow,
state = ownerContext.state,
overflowAdjust = state.overflowAdjust,
padWidth, padHeight, padElContext, padding, scrollRangeFlags,
overflow, scrollbarSize, contentW, contentH, ownerW, ownerH, scrollbars,
xauto, yauto;
if (manageOverflow && !state.secondPass && !me.reserveScrollbar) {
// Determine the dimensions that have overflow:auto applied. If these come by
// way of component config, this does not require a DOM read:
if (owner.autoScroll) {
xauto = yauto = true;
} else {
if (owner.overflowX) {
xauto = owner.overflowX == 'auto';
} else {
overflow = ownerContext.targetContext.getStyle('overflow-x');
xauto = overflow && overflow != 'hidden' && overflow != 'scroll';
}
if (owner.overflowY) {
yauto = owner.overflowY == 'auto';
} else {
overflow = ownerContext.targetContext.getStyle('overflow-y');
yauto = overflow && overflow != 'hidden' && overflow != 'scroll';
}
}
// If the container layout is not using width, we don't need to adjust for the
// vscroll (likewise for height). Perhaps we don't even need to run the layout
// again if the adjustments won't have any effect on the result!
if (!containerSize.gotWidth) {
xauto = false;
}
if (!containerSize.gotHeight) {
yauto = false;
}
if (xauto || yauto) {
scrollbarSize = Ext.getScrollbarSize();
// as a container we calculate contentWidth/Height, so we don't want
// to use getProp and make it look like we are triggered by them...
contentW = ownerContext.peek('contentWidth');
contentH = ownerContext.peek('contentHeight');
ownerW = containerSize.width;
ownerH = containerSize.height;
scrollbars = me.getScrollbarsNeeded(ownerW, ownerH, contentW, contentH);
state.overflowState = scrollbars;
if (typeof dimensions == 'number') {
scrollbars &= ~dimensions; // ignore dimensions that have no effect
}
overflowAdjust = {
width: (xauto && (scrollbars & 2)) ? scrollbarSize.width : 0,
height: (yauto && (scrollbars & 1)) ? scrollbarSize.height : 0
};
// We can have 0-sized scrollbars (new Mac OS) and so don't invalidate
// the layout unless this will change something...
if (overflowAdjust.width !== me.lastOverflowAdjust.width || overflowAdjust.height !== me.lastOverflowAdjust.height) {
me.done = false;
// we pass overflowAdjust and overflowState in as state for the next
// cycle (these are discarded if one of our ownerCt's invalidates):
ownerContext.invalidate({
state: {
overflowAdjust: overflowAdjust,
overflowState: state.overflowState,
secondPass: true
}
});
}
}
}
if (!me.done) {
return;
}
padElContext = ownerContext.padElContext ||
(ownerContext.padElContext = ownerContext.getEl('overflowPadderEl', me));
// Even if overflow does not effect the layout, we still do need the padEl to be
// sized or hidden appropriately...
if (padElContext) {
scrollbars = state.overflowState; // the true overflow state
padWidth = containerSize.width;
padHeight = 0;// TODO me.padHeightAdj; // 0 or 1
if (scrollbars) {
padding = ownerContext.targetContext.getPaddingInfo();
scrollRangeFlags = me.scrollRangeFlags;
if ((scrollbars & 2) && (scrollRangeFlags & 1)) { // if (vscroll and loses bottom)
padHeight += padding.bottom;
}
if ((scrollbars & 1) && (scrollRangeFlags & 4)) { // if (hscroll and loses right)
padWidth += padding.right;
}
padElContext.setProp('display', '');
padElContext.setSize(padWidth, padHeight);
} else {
padElContext.setProp('display', 'none');
}
}
},
<span id='Ext-layout-container-Container-method-configureItem'> /**
</span> * Adds layout's itemCls and owning Container's itemCls
* @protected
*/
configureItem: function(item) {
var me = this,
ownerItemCls = me.owner.itemCls,
addClasses = [].concat(me.itemCls || []);
me.callParent(arguments);
if (ownerItemCls) {
addClasses = Ext.Array.push(addClasses, ownerItemCls);
}
item.addCls(addClasses);
},
doRenderBody: function (out, renderData) {
// Careful! This method is bolted on to the renderTpl so all we get for context is
// the renderData! The "this" pointer is the renderTpl instance!
this.renderItems(out, renderData);
this.renderContent(out, renderData);
},
doRenderContainer: function (out, renderData) {
// Careful! This method is bolted on to the renderTpl so all we get for context is
// the renderData! The "this" pointer is the renderTpl instance!
var me = renderData.$comp.layout,
tpl = me.getRenderTpl(),
data = me.getRenderData();
tpl.applyOut(data, out);
},
doRenderItems: function (out, renderData) {
// Careful! This method is bolted on to the renderTpl so all we get for context is
// the renderData! The "this" pointer is the renderTpl instance!
var me = renderData.$layout,
tree = me.getRenderTree();
if (tree) {
Ext.DomHelper.generateMarkup(tree, out);
}
},
<span id='Ext-layout-container-Container-method-doRenderPadder'> /**
</span> * Creates an element that makes bottom/right body padding consistent across browsers.
* This element is sized based on the need for scrollbars in {@link #calculateOverflow}.
* If the {@link #manageOverflow} option is false, this element is not created.
*
* See {@link #getScrollRangeFlags} for more details.
*/
doRenderPadder: function (out, renderData) {
// Careful! This method is bolted on to the renderTpl so all we get for context is
// the renderData! The "this" pointer is the renderTpl instance!
var me = renderData.$layout,
owner = me.owner,
scrollRangeFlags = me.getScrollRangeFlags();
if (me.manageOverflow == 2) {
if (scrollRangeFlags & 5) { // if (loses parent bottom and/or right padding)
out.push('<div id="',owner.id,'-overflowPadderEl" ',
'style="font-size: 1px; width:1px; height: 1px;');
// We won't want the height of the padder to cause problems when we only
// want to adjust for right padding, so we relatively position it up 1px so
// its height of 1px will have no vertical effect. This trick does not work
// on IE due to bugs (the effects are worse than the off-by-1px in scroll
// height).
//
/* turns out this does not work on FF (5) either... TODO
if (Ext.isIE || Ext.isGecko) {
me.padHeightAdj = 0;
} else {
me.padHeightAdj = 1;
out.push('position: relative; top: -1px;');
}/**/
out.push('"></div>');
me.scrollRangeFlags = scrollRangeFlags; // remember for calculateOverflow
}
}
},
finishRender: function () {
var me = this,
target, items;
me.callParent();
me.cacheElements();
target = me.getRenderTarget();
items = me.getLayoutItems();
if (me.targetCls) {
me.getTarget().addCls(me.targetCls);
}
me.finishRenderItems(target, items);
},
<span id='Ext-layout-container-Container-method-notifyOwner'> /**
</span> * @private
* Called for every layout in the layout context after all the layouts have been finally flushed
*/
notifyOwner: function() {
this.owner.afterLayout(this);
},
<span id='Ext-layout-container-Container-method-getContainerSize'> /**
</span> * Returns the container size (that of the target). Only the fixed-sized dimensions can
* be returned because the shrinkWrap dimensions are based on the contentWidth/Height
* as determined by the container layout.
*
* If the {@link #calculateOverflow} method is used and if {@link #manageOverflow} is
* true, this may adjust the width/height by the size of scrollbars.
*
* @param {Ext.layout.ContextItem} ownerContext The owner's context item.
* @param {Boolean} [inDom=false] True if the container size must be in the DOM.
* @return {Object} The size
* @return {Number} return.width The width
* @return {Number} return.height The height
* @protected
*/
getContainerSize : function(ownerContext, inDom) {
// Subtle But Important:
//
// We don't want to call getProp/hasProp et.al. unless we in fact need that value
// for our results! If we call it and don't need it, the layout manager will think
// we depend on it and will schedule us again should it change.
var targetContext = ownerContext.targetContext,
frameInfo = targetContext.getFrameInfo(),
padding = targetContext.getPaddingInfo(),
got = 0,
needed = 0,
overflowAdjust = ownerContext.state.overflowAdjust,
gotWidth, gotHeight, width, height;
// In an shrinkWrap width/height case, we must not ask for any of these dimensions
// because they will be determined by contentWidth/Height which is calculated by
// this layout...
// Fit/Card layouts are able to set just the width of children, allowing child's
// resulting height to autosize the Container.
// See examples/tabs/tabs.html for an example of this.
if (!ownerContext.widthModel.shrinkWrap) {
++needed;
width = inDom ? targetContext.getDomProp('width') : targetContext.getProp('width');
gotWidth = (typeof width == 'number');
if (gotWidth) {
++got;
width -= frameInfo.width + padding.width;
if (overflowAdjust) {
width -= overflowAdjust.width;
}
}
}
if (!ownerContext.heightModel.shrinkWrap) {
++needed;
height = inDom ? targetContext.getDomProp('height') : targetContext.getProp('height');
gotHeight = (typeof height == 'number');
if (gotHeight) {
++got;
height -= frameInfo.height + padding.height;
if (overflowAdjust) {
height -= overflowAdjust.height;
}
}
}
return {
width: width,
height: height,
needed: needed,
got: got,
gotAll: got == needed,
gotWidth: gotWidth,
gotHeight: gotHeight
};
},
<span id='Ext-layout-container-Container-method-getLayoutItems'> /**
</span> * Returns an array of child components either for a render phase (Performed in the beforeLayout
* method of the layout's base class), or the layout phase (onLayout).
* @return {Ext.Component[]} of child components
*/
getLayoutItems: function() {
var owner = this.owner,
items = owner && owner.items;
return (items && items.items) || [];
},
getRenderData: function () {
var comp = this.owner;
return {
$comp: comp,
$layout: this,
ownerId: comp.id
};
},
<span id='Ext-layout-container-Container-method-getRenderedItems'> /**
</span> * @protected
* Returns all items that are rendered
* @return {Array} All matching items
*/
getRenderedItems: function() {
var me = this,
target = me.getRenderTarget(),
items = me.getLayoutItems(),
ln = items.length,
renderedItems = [],
i, item;
for (i = 0; i < ln; i++) {
item = items[i];
if (item.rendered && me.isValidParent(item, target, i)) {
renderedItems.push(item);
}
}
return renderedItems;
},
<span id='Ext-layout-container-Container-method-getRenderTarget'> /**
</span> * Returns the element into which rendering must take place. Defaults to the owner Container's
* target element.
*
* May be overridden in layout managers which implement an inner element.
*
* @return {Ext.Element}
*/
getRenderTarget: function() {
return this.owner.getTargetEl();
},
<span id='Ext-layout-container-Container-method-getElementTarget'> /**
</span> * Returns the element into which extra functional DOM elements can be inserted. Defaults to the owner Component's encapsulating element.
*
* May be overridden in Component layout managers which implement a {@link #getRenderTarget component render target} which must only
* contain child components.
* @return {Ext.Element}
*/
getElementTarget: function() {
return this.getRenderTarget();
},
getRenderTpl: function () {
var me = this,
renderTpl = Ext.XTemplate.getTpl(this, 'renderTpl');
// Make sure all standard callout methods for the owner component are placed on the
// XTemplate instance (but only once please):
if (!renderTpl.renderContent) {
me.owner.setupRenderTpl(renderTpl);
}
return renderTpl;
},
getRenderTree: function () {
var result,
items = this.owner.items,
itemsGen,
renderCfgs = {};
do {
itemsGen = items.generation;
result = this.getItemsRenderTree(this.getLayoutItems(), renderCfgs);
} while (items.generation !== itemsGen);
return result;
},
getScrollbarsNeeded: function (width, height, contentWidth, contentHeight) {
var scrollbarSize = Ext.getScrollbarSize(),
hasWidth = typeof width == 'number',
hasHeight = typeof height == 'number',
needHorz = 0,
needVert = 0;
// No space-consuming scrollbars.
if (!scrollbarSize.width) {
return 0;
}
if (hasHeight && height < contentHeight) {
needVert = 2;
width -= scrollbarSize.width;
}
if (hasWidth && width < contentWidth) {
needHorz = 1;
if (!needVert && hasHeight) {
height -= scrollbarSize.height;
if (height < contentHeight) {
needVert = 2;
}
}
}
return needVert + needHorz;
},
<span id='Ext-layout-container-Container-property-getScrollRangeFlags'> /**
</span> * Returns flags indicating cross-browser handling of scrollHeight/Width. In particular,
* IE has issues with padding-bottom in a scrolling element (it does not include that
* padding in the scrollHeight). Also, margin-bottom on a child in a scrolling element
* can be lost.
*
* All browsers seem to ignore margin-right on children and padding-right on the parent
* element (the one with the overflow)
*
* This method returns a number with the follow bit positions set based on things not
* accounted for in scrollHeight and scrollWidth:
*
* - 1: Scrolling element's padding-bottom is not included in scrollHeight.
* - 2: Last child's margin-bottom is not included in scrollHeight.
* - 4: Scrolling element's padding-right is not included in scrollWidth.
* - 8: Child's margin-right is not included in scrollWidth.
*
* To work around the margin-bottom issue, it is sufficient to create a 0px tall last
* child that will "hide" the margin. This can also be handled by wrapping the children
* in an element, again "hiding" the margin. Wrapping the elements is about the only
* way to preserve their right margins. This is the strategy used by Column layout.
*
* To work around the padding-bottom problem, since it is comes from a style on the
* parent element, about the only simple fix is to create a last child with height
* equal to padding-bottom. To preserve the right padding, the sizing element needs to
* have a width that includes the right padding.
*/
getScrollRangeFlags: (function () {
var flags = -1;
return function () {
if (flags < 0) {
var div = Ext.getBody().createChild({
//cls: 'x-border-box x-hide-offsets',
cls: Ext.baseCSSPrefix + 'border-box',
style: {
width: '100px', height: '100px', padding: '10px',
overflow: 'auto'
},
children: [{
style: {
border: '1px solid red',
width: '150px', height: '150px',
margin: '0 5px 5px 0' // TRBL
}
}]
}),
scrollHeight = div.dom.scrollHeight,
scrollWidth = div.dom.scrollWidth,
heightFlags = {
// right answer, nothing missing:
175: 0,
// missing parent padding-bottom:
165: 1,
// missing child margin-bottom:
170: 2,
// missing both
160: 3
},
widthFlags = {
// right answer, nothing missing:
175: 0,
// missing parent padding-right:
165: 4,
// missing child margin-right:
170: 8,
// missing both
160: 12
};
flags = (heightFlags[scrollHeight] || 0) | (widthFlags[scrollWidth] || 0);
//Ext.log('flags=',flags.toString(2));
div.remove();
}
return flags;
};
}()),
<span id='Ext-layout-container-Container-method-getTarget'> /**
</span> * Returns the owner component's resize element.
* @return {Ext.Element}
*/
getTarget: function() {
return this.owner.getTargetEl();
},
<span id='Ext-layout-container-Container-method-getVisibleItems'> /**
</span> * @protected
* Returns all items that are both rendered and visible
* @return {Array} All matching items
*/
getVisibleItems: function() {
var target = this.getRenderTarget(),
items = this.getLayoutItems(),
ln = items.length,
visibleItems = [],
i, item;
for (i = 0; i < ln; i++) {
item = items[i];
if (item.rendered && this.isValidParent(item, target, i) && item.hidden !== true) {
visibleItems.push(item);
}
}
return visibleItems;
},
setupRenderTpl: function (renderTpl) {
var me = this;
renderTpl.renderBody = me.doRenderBody;
renderTpl.renderContainer = me.doRenderContainer;
renderTpl.renderItems = me.doRenderItems;
renderTpl.renderPadder = me.doRenderPadder;
}
});
</pre>
</body>
</html>