我想基于给定节点找出dynatree中的所有父母,并扩展父母。
function Expand(node){
$(".dynatree-node").each(function(){
if($(this).text() == node){
node.visitParents( function (node) {
node.toggleExpand();
},true);
}
});
}
我做错了什么?如何进行?
答案 0 :(得分:4)
node.makeVisible()会展开父母
答案 1 :(得分:0)
尝试
$("..dynatree-node").each(function(){
var node = $.ui.dynatree.getNode(this);
node.getParent().expand(true);
});