Extjs - 当从树存储中删除子节点时,为什么子节点未从父节点中删除?

时间:2016-10-12 14:39:48

标签: javascript extjs

使用extjs版本5 - Ext.data.TreeStore

getGrid().getStore().remove(record); //web page shows that this record has been removed

parentNode = getGrid().getStore().getById(record.parentNode.id);

console.log(parentNode.childNodes); //why is the record removed still one of the child nodes?

我的目标是确定父节点是否仍有任何子节点,如果没有更多子节点,则删除父节点。 但是,由于父节点在子节点被删除后仍然具有对子节点的引用,因此无法实现我的目标。 感谢

0 个答案:

没有答案