Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Moin Khan on Jan 18, 2008 05:59
open dhtmlx forum
DHXTree DataProcessor

In DHXTree v1.6 Stand. , we are unable to use moveItem() function in case of multi-selected items movement either up or down.
How to implement that?
Answer posted by Support on Jan 18, 2008 06:35
There is no way to use single moveItem command to move group of rows at once, but you can made a loop and call moveItem command for each necessary items

var list=[ ...array of ids ... ];
for (var i=0; i<list.length; i++)
    tree.moveItem(list[i],....