Hello,
I am trying to override the cursor when AllRowsDragDrop is set to true on the grid. I want to show the user the default cursor but the grid seems to want to override this with the standard drag and drop cursor. I tried the following but it didn't work:
Any ideas?
Thanks,
Michael
I am trying to override the cursor when AllRowsDragDrop is set to true on the grid. I want to show the user the default cursor but the grid seems to want to override this with the standard drag and drop cursor. I tried the following but it didn't work:
| function onRowMouseOver(sender, args) { |
| //gets the grid to be dragged from |
| grid = sender; |
| // overrides the cursor |
| document.body.style.cursor = "default"; |
| } |
Any ideas?
Thanks,
Michael