Home - Forums-.NET - FlyTreeView (ASP.NET) - Why the droped node is not clickable?!

FlyTreeView (ASP.NET)

Technical support and KB related to the FlyTreeView control

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

Why the droped node is not clickable?!
Link Posted: 08-Sep-2009 08:15
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
Link Posted: 08-Sep-2009 19:22
It should be.
Do you have any javascript error?
Link Posted: 09-Sep-2009 00:16
Yes we get the following error although the dragdrop works fine except the click issue:
Error: flytreeview_dragObject is null

We do not know why we got this error, did we miss something?
Link Posted: 10-Sep-2009 00:22
Could you please reply to my last post?
Link Posted: 10-Sep-2009 07:36
Looks like something strange.
Could you send a test page that reproduces the issue to support@9rays.net ?