Drag and Drop

I have 3 drag and drop grids that work fine. Is it possible to make one of the grids drop only with no drag?

The grid is on that the contents should not be dragged out of.



Thanks

In dhtmlgrid 1.6 you can use onBeforeDrag event

mygrid.attachEvent(“onBeforeDrag”,function(){
    return false;
});

In dhtmlxgrid 1.5 you can achieve similar effect by using

mygrid._createDragNode=function(){
    return null;
}