selectAll: function() {
this.getRootNode().eachChild(function (child) {
child.set('checked', true);
});
},

unSelectAll: function() {
this.getRootNode().eachChild(function (child) {
child.set('checked', false);
});
}

相关文章: