Can we disable one-side self drag drop ?

Hi All,

I meet the situation :
There’re two grid :A ,B
i want to drag & drop between A and B . Like that : A<–>B

But i don’t want to Drag & Drop items in the grid A.

How can i make this ?

Thanks a lot ! I see there’re very good support here . Anybody can tell me the way .:slight_smile:

Yes, it’s possible. You just need to add this function to your grid A.

grid.attachEvent("onDragIn", function(dId,tId,sObj,tObj){ if (sOjb==tObj) return false return true });