Quote:
onNodeClick : function(node, e){
if (e.shiftKey) e.preventDefault();
// disable select unless not using a dragZone, or a multiselectdragzone
if ( !this.tree.dragZone || !this.tree.dragZone.isMultiSelect ) {
this.onMouseDown(node, e);
this.onMouseUp(node, e);
}
},
to:
Quote:
onNodeClick : function(node, e){
if (e.shiftKey) e.preventDefault();
// disable select unless not using a dragZone, or a multiselectdragzone
if ( !this.tree.dragZone || !this.tree.dragZone.isMultiSelect || this.tree.root.isSelected() ) {
this.onMouseDown(node, e);
this.onMouseUp(node, e);
}
},