Home - Forums-.NET - FlyTreeView (ASP.NET) - Drag from various sources: where is dragdropname?

FlyTreeView (ASP.NET)

Technical support and KB related to the FlyTreeView control

This forum related to following products: FlyTreeView for ASP.NET

Drag from various sources: where is dragdropname?
Link Posted: 02-Oct-2006 20:02
Hi,

I drag new nodes from a number of sources to the flytreeview. Each source has it's own dragname. I would expect to see this name in the \"InsertCallbackNodesFromValueEventArgs\" but.... it's not..? Or do I need to take a closer look?
Link Posted: 04-Oct-2006 12:21
There's demo at
http://www.9rays.net/asp.net_2/treeview/Demo_DragAndDrop.aspx
and doc at
http://www.9rays.net/asp.net_2/treeview/Doc_DragDrop.aspx

I believe you're calling something like

flytreeview_startDrag('dragname', \"value\", \"html\");


Tthe dragname parameter serves to detect whether the drop will be allowed (using DragDropAcceptNames property or acceptNames parameter of flytreeview_dragOver) and nothing more.

You should use the value parameter to pass value to server.


[/b]