Merge pull request #630 from NativeScript/repeater-css

repeater children now created no matter if isLoaded is true
This commit is contained in:
Vladimir Enchev
2015-08-27 16:53:31 +03:00

View File

@@ -141,7 +141,7 @@ export class Repeater extends viewModule.CustomLayoutView implements definition.
}
private _createChildren() {
if (this.isDirty && this.isLoaded) {
if (this.isDirty) {
clearItemsLayout(this.itemsLayout);
if (!types.isNullOrUndefined(this.items) && types.isNumber(this.items.length)) {