弹性树节点类型
我有一棵节点树,我不希望某些类型的节点出现在树中,我可以检查树项目渲染器上每个特定节点类型的数据,所以我有一种类型,我不希望它显示为树节点,就像它不存在一样。
if(this.data.type == TypeEnum.id){
this.visible=false;
this.height = 0;
}
else {
i have a tree of nodes that i dont want some type of nodes to appear in the tree, i can check the data on tree item renderer for each specific node type, so i have one type that i dont want it to be shown as tree node, like it doesn't exist.
if(this.data.type == TypeEnum.id){
this.visible=false;
this.height = 0;
}
else {
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样的东西怎么样:
或者只是添加一些
filter
函数,例如 此处how about something like this:
or just add some
filter
function like here