fires when the user drops a custom draggable node into the files list
node | object | custom node DOM element |
fileData | object | file data specified in a custom node |
// firstly, add a draggable node
myVault.addDragableNode("nodeId", {name: "price.xls", size: 257412});
// then you can retrieve it from event
myVault.attachEvent("onDrop", function(node, fileData){
// your code here
});
This API page is for Vault v2.5. Please go to docs.dhtmlx.com/vault/ to see API reference for the current version of dhtmlxVault.
added in version 2.3
Back to top