I am having two trees and moving the nodes between trees but on click of a button i want to get all the nodes in the 2nd tree but its not showing the modified treenodes is there anything we need to set?
Hi,
I suppose you use drag & drop between the trees right? Can you show me a sample of your code?
Thanks,
Lubomir
I was able to get this thanks a lot
but one quick question i want to have a server even fired OnNodeDropped but that is not being called after the drag and drop is there anything i am missing
code
<ig:WebDataTree ID="treeExistingBSNodes" runat="server" Width
="100%"
="true"
="Single"
="false"
="10"
="treeExistingBSNodes_NodeDropped"
>
/>
Serverside
)
Try
Catch ex As
Exception
Sub
this way configured the NodeDropped event will not fire until the client side triggers a postback. If you want to handle the drop immediately you have to configure <AutoPostbackFlags NodeDropped="On" />
If the event doesn't fire, make sure you use the latest service release or contact developer support.