I've got two trees in my form. One has a list of items and one has a list of categories those items can go into. The items don't have to be in a category and they can be in more than one category.
I'd like the user to be able to drag a node from the list tree and capture that it is dropped on a category and have it show up as a child node under that category. By default this works but the node is actually removed from the list tree and put in the other tree. I'd like it to not get removed from the list but have it act more like a copy operation than a move.
I'm sure I can make this work by capturing the right events and adding in some logic, but before going through the trouble of tracking down exactly what I needed to do, I wanted to make sure I wasn't missing some kind of flag or setting on the tree that would do exactly what I'm talking about automatically.
I'd like the user to be able to drag a node from the list tree and capture that it is dropped on a category and have it show up as a child node under that category. By default this works but the node is actually removed from the list tree and put in the other tree. I'd like it to not get removed from the list but have it act more like a copy operation than a move.
I'm sure I can make this work by capturing the right events and adding in some logic, but before going through the trouble of tracking down exactly what I needed to do, I wanted to make sure I wasn't missing some kind of flag or setting on the tree that would do exactly what I'm talking about automatically.