摘要: selectAll: function() { this.getRootNode().eachChild(function (child) { child.set('checked', true); }); }, unSelectAll: function() { this.getRootNode().eachChild(function (child) { child.set('checked', false); }); } 阅读全文
posted @ 2014-01-08 10:05 大新博客 阅读(555) 评论(0) 推荐(1)