Hello,
Is it possible to drop grid item into the tree without adding it as a child?
Regards,
Michiel
Hello,
Is it possible to drop grid item into the tree without adding it as a child?
Regards,
Michiel
Hello,
so, in the result you want to remove a row from a grid, but do not want the new item being added to a tree. In this case try the following:
tree.attachEvent("onDrop",function(sid,tid,bid,sobj,tibj){
if(sobj!=tibj)
this.deleteItem(sid);
})
Thanks, this works great!
Regards,
Michiel