Dragging content from one grid to the other

While dragging datas between the grids I need to change cursor pointer to crosshair. I tried multiple codes but didn’t get. Any help would be highly appreciated. Thanks in advance.

Please, try to use the following code:
myGrid.attachEvent(“onBeforeDrag”, function(id){
myGrid.objBox.style.cursor=“crosshair”
return true
});
myGrid.attachEvent(“onDrop”, function(sId,tId,dId,sObj,tObj,sCol,tCol){
myGrid.objBox.style.cursor=""
return true;
});

It’s working now. Thank you :smiley: :smiley: