If you want to drop nodes in listboxes with the three options as above,
insert your code at the bottom of this function:
function ob_OnNodeDropOutside(dst)
{
....
ob_t2_CopyToControl(dst, copy);
// comment this line if you don't want to drop nodes into listboxes
// copy = 0 : Copy only the moving node to listboxes
// copy = 1 : Copy moving node with child nodes to listboxes
// copy = 2 : Copy only the child nodes to listboxes
....
}
| |