Как автоматически развернуть все подузлы (настроенные на ленивую загрузку) из родительского узла, используя observables и primeng?
Консоль выводит
TypeError: Невозможно прочитать свойство 'count' из неопределенного
expandAll(event) {
this.nodeService.getChildren(event.node.object_sqn).subscribe((nodes) => {
event.node.children = nodes
});
console.log(event.node.children)
if (event.node.children.count > 0) {
event.node.expanded = true;
for (let cn of event.node.children) {
this.expandAll(cn);
}
}
}