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