参考示例: 过滤树
tree.filter(function (node) { var text = node.text ? node.text.toLowerCase() : ""; if (text.indexOf(key) != -1) { return true; } });
tree.clearFilter();