|
|
|
@ -25,6 +25,7 @@ export class VirtualGroupList extends Widget {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
init() { |
|
|
|
|
this._calculateSummaryHeight(); |
|
|
|
|
this.renderedIndex = -1; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -44,7 +45,7 @@ export class VirtualGroupList extends Widget {
|
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
type: VirtualGroup.xtype, |
|
|
|
|
height: rowHeight * items.length, |
|
|
|
|
height: this.summaryHeight, |
|
|
|
|
ref: (ref) => { |
|
|
|
|
this.container = ref; |
|
|
|
|
}, |
|
|
|
@ -77,7 +78,6 @@ export class VirtualGroupList extends Widget {
|
|
|
|
|
this.populate(newValue); |
|
|
|
|
}) |
|
|
|
|
: o.items; |
|
|
|
|
this._calculateSummaryHeight(); |
|
|
|
|
this._populate(); |
|
|
|
|
this.ticking = false; |
|
|
|
|
this.element.scroll(() => { |
|
|
|
|