Hi, we implemented the D&D successfully but there is still a problem with the droped node in the tree it's not clickable! do you have any idea why?
The following is how we add the droped nodes:
Public Sub flyTreeView_InsertCallbackNodesFromValue(ByVal sender As Object, ByVal e As NineRays.WebControls.InsertCallbackNodesFromValueEventArgs) Handles flyTreeView.InsertCallbackNodesFromValue
Dim info As New DirectoryInfo(e.Value.ToString)
Dim directoryName As String = info.Name
Dim ftn As New FlyTreeNode()
ftn.Text = HttpUtility.HtmlEncode(directoryName)
ftn.Value = e.Value
e.Nodes.Add(ftn)
End sub