Drag'n Drop with several Grid's ?

Hello

I have 4 Grid’s. Drag’n Drop should be possible from 1 to 2 and from 3 to 4 only. Is there an easy solution?

Thank you

?

Hello again

Is there really no possibility ?

You may try to use onDrag event.
For example:

mygrid1.attachEvent("onDrag", function(sId,tId,sObj,tObj,sInd,tInd){ if(sObj==mygrid2){return true} else {return false} }); mygrid2.attachEvent("onDrag", function(sId,tId,sObj,tObj,sInd,tInd){ if(sObj==mygrid1){return true} else {return false} });

Works perfectly :slight_smile:

Thank you