Hi,
Using drag and drop within the same table provides two methods to get the dragged node:
But, how can you know the node where it is dropped ? I didn't find it in the Javadocs (I know, I know, it must be evident, but really, I didn't find it)
Thanks in advance,
Juan
Using drag and drop within the same table provides two methods to get the dragged node:
Code:
public void onDrop( DropEvent event ) { TreeGrid source = (TreeGrid) EventHandler.getDragTarget(); // or TreeGrid source = (TreeGrid) event.getSource(); }
Thanks in advance,
Juan
Comment