答案 0 :(得分:1)
oncheckchange = function(node, checked, options) {
node.cascadeBy(function(n) {
alert(n.get('id')); // gives the child node's Id
n.set('checked', checked);
});
};
tree.on('checkchange', oncheckchange, null);
答案 1 :(得分:0)
在纯Ext中你应该只能做node.id或node.attributes.id(我忘记了)来获取节点的ID。就孩子而言,它是node.childNodes [*]。id等。