Hi,
What is the best way to copy only the children of the selected row from the source treegrid to an empty treegrid? Thanks in advance.
Default approach with usage of grid.moveRowTo is the simplest way
var ids=mygrid.getSubItems(id).split(",")
for (var i=0; i<ids.length; i++)
mygrid.moveRowTo(ids[i],0,“copy”,“child”,mygrid,targetGrid);