redefine this method in your code to specify how grid row values should be displayed during the dragging
| id | string|number | the id of the grid's row |
myGrid.rowToDragElement=function(id){ //your code here // prepare a text string var text = "<img src = 'some.gif'> - "+myGrid.cells(id,0).getValue(); return text; }
Back to top