Hi Ivan,
I couldn't solve this.
If I use the latest jquery.jstree.js 178 from SVN, the tree is not
initialized at all. If I use a stable one v1.0.rc, then these
functions does not work like it should be.
For example,
$("#basic_html").jstree({
"json_data" : {
"data" : leftTreeIniData
},
"crrm":{
"move" : {
"always_copy" : "multitree"
}
},
this behave the same if the value is multitree or true. The node is
copied inside the tree, but when I try to copy from one tree to
another, the node is just moved.
And this code:
$("#basic_html").bind("move_node.jstree",
function (event,data){
data.rslt.oc.css("color","red");
$('#dialog').dialog('open');
}
);
It just open dialog specified at the second line, but there is no
change in color.
I suppose that this is changed in the later release, but as I told you
the latest one does not work.
Zoran