Drag and drop between grid and tree

Hi,
I am having a layout 3J, in one layout i am having a grid and in another layout i am having an tree object…So, I need to drag a grid row into tree object…So, please can any one help me in this…

Thanks

Have you tried enable drag an drop at dhtmlxGrid and dhtmlxTree?
To customize drag and drop form tree to grid you can drag and drop event.
Please find more information here docs.dhtmlx.com/doku.php?id=dhtm … and_drop&s[]=drag&s[]=and&s[]=drop

Hi,
i tried adding a code as follows below in a grid object but it throws an error (itemObject.parentObject is undefined)in dhtmlxtree.js…So, please can anyone help me in this.

//This is my code//
repoGrid.gridToTreeElement = function(repoTree,treeID,gridID){
alert(treeID);
return this.cells(gridID,9).getValue();
}

Thanks