Rank: Advanced Member Groups: Member
Joined: 6/23/2010 Posts: 48
|
Hi
I’m working with an Treeview. NodeOver and NodeDrop is familiar to me after great help on previous post. What I now struggling with is below question that I try to explain by two columns, Ax and Bx, where Ax represents FolderID and Bx ParentFolderID.
Ax | Bx
A1 | Null A2 | A1 A3 | A2
- If I start a drag on record A3 - Then performs a drop on record A2
Is it possiblie to get the new Bx that has changed its Bx from A2 to A1?
Thanks for great support.
Best
ITMA
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,195
|
Hi, When you drop a node, the third argument of your ClientSideOnDragDrop handler is the new parent node: http://www.essentialobjects.com/doc/1/jsdoc.public.handlers.treeview_dragdrop_handler.aspxThanks!
|