sir, my code below doesn’t alert anything when I drag an item from mygrid1(source object) to mygrid2(target object). I really can’t see what’s wrong. The table is being displayed, but my alert does not pop up any message. Please help me
mygrid2.attachEvent(“onDrag”,function()
{
alert(‘dragging’);
return true;
});
Yes, if you have any problem with
grid.attachEvent(“onDrag”,funct);
please try to use
grid.setDragHandler(funct);
Please check attached sample.
1196939726.ZIP (61.4 KB)