我正在使用树组件,即(部分加载数据的树)。这里是stackblitz示例
答案 0 :(得分:0)
在您的组件文件中输入:
[default]
signing_required=no
在您的模板文件中输入:
onTreeLoad(tree): void {
setTimeout(function(){
const firstNode = tree.treeModel.getFirstRoot();
if(firstNode != undefined) {
firstNode.expand();
}
}, 200);
}