Skip to content

Commit 6cfb88e

Browse files
author
Alexander Vakrilov
authored
Merge pull request NativeScript#594 from NativeScript/list-view-template-fix
ListView using wrong template after navigation
2 parents 2819c1e + e2a9570 commit 6cfb88e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

nativescript-angular/directives/list-view-comp.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ export class ListViewComponent implements DoCheck, OnDestroy, AfterContentInit {
6969

7070
@Output() public setupItemView = new EventEmitter<SetupItemViewArgs>();
7171

72-
@ContentChild(TemplateRef) itemTemplate: TemplateRef<ListItemContext>;
72+
@ContentChild(TemplateRef) itemTemplateQuery: TemplateRef<ListItemContext>;
73+
74+
itemTemplate: TemplateRef<ListItemContext>;
7375

7476
@Input()
7577
get items() {
@@ -108,6 +110,10 @@ export class ListViewComponent implements DoCheck, OnDestroy, AfterContentInit {
108110
}
109111

110112
private setItemTemplates() {
113+
// The itemTemplateQuery may be changed after list items are added that contain <template> inside,
114+
// so cache and use only the original template to avoid errors.
115+
this.itemTemplate = this.itemTemplateQuery;
116+
111117
if (this._templateMap) {
112118
listViewLog("Setting templates");
113119

0 commit comments

Comments
 (0)