mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 20:11:24 +08:00
repeater children now created no matter if isLoaded is true
This commit is contained in:
@ -141,7 +141,7 @@ export class Repeater extends viewModule.CustomLayoutView implements definition.
|
|||||||
}
|
}
|
||||||
|
|
||||||
private _createChildren() {
|
private _createChildren() {
|
||||||
if (this.isDirty && this.isLoaded) {
|
if (this.isDirty) {
|
||||||
clearItemsLayout(this.itemsLayout);
|
clearItemsLayout(this.itemsLayout);
|
||||||
|
|
||||||
if (!types.isNullOrUndefined(this.items) && types.isNumber(this.items.length)) {
|
if (!types.isNullOrUndefined(this.items) && types.isNumber(this.items.length)) {
|
||||||
|
Reference in New Issue
Block a user