I am use fancybox plug in, and don't know how to select/deselect all clone node? I am set refkey but not working. Do you have any ideas. Thanks a lot.
$("#tree1111").fancytree({
checkbox: true,
extensions: ["clones"],
source: SOURCE,
clones: {
highlightClones: true
},
select: function(e, data){
var clones = data.node.getCloneList();
if( clones ) {
alert("Clones: "+ $.map(clones, function(n){ return "" + n;}).join(", "));
}
}
});