While dragging datas between the grids I changed the cursor pointer to crosshair using the 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;
});
But while dragging, the name of the dragged element is also coming along with the crosshair. I need only crosshair not the name of the element.
How to achieve this?
Any help would be highly appreciated. Thanks in advance.
Please, try to use the following css:
.dragSpanDiv{
display: none;
}