Categories | Question details Back To List | ||
dhtmlxtree enableMercyDrag + dhtmlxdataprocessor question Hello, I'm using dhtmlxtree 1.6 pro version, when I copy a not empty node with mercydrag e.g. this node have 3 children, i get a 4 ajax request to server from dhtmlxdataprocessor 1- root node, 2,3,4 - subnodes(children). On the server side i use PEAR NestedSet library so i need only one request for handle it - only root node without children. Please advise is it possible to force dhtmlxdataprocessor to make only one request with main node only or recommend some other solution. Thank you. Regards, Alexander. Answer posted by Alex (support) on Jun 12, 2009 08:18 Hello, you can try to use the following approach tree.attachEvent("onDrag",function(sid,tid){ Answer posted by Alexander on Jun 16, 2009 09:58 Thank you much! |