Is’t possible to save tree that is changed by DragAndDrop?(save tructure that I have changed by DragAndDrop)
Thanks
You can get the full XML structure of tree through serialization
var xml = tree.serializeTree();
Also , tree provides events for different state of d-n-d process, so you can attach custom code with any necessary functionality as d-n-d reaction.