This question is locked. New answers and comments are not allowed.
Hi,
I want to drag a file from the desktop onto a RadGridView and then upload it when it is dropped on certain grid row. By setting AllowDrop=True I managed to react on the Drop event of the RadGridView. But now I am stuck. I tried to get the dropped File by using
but I get a NotImplementedException.
So could please someone help me with the following questions:
1) how can I start the upload e.g. with a RadUpload?
2) I want that the row over which the mouse holds the currently dragged item to be highlighted. Do I have to implement this on my own or is there a way to force RadGridView to do so?
Thanks in advance and best regards,
Stefan
I want to drag a file from the desktop onto a RadGridView and then upload it when it is dropped on certain grid row. By setting AllowDrop=True I managed to react on the Drop event of the RadGridView. But now I am stuck. I tried to get the dropped File by using
private void gridDocuments_Drop(object sender, DragEventArgs e){ FileInfo file = e.Data.GetData(typeof(FileInfo)) as FileInfo;}but I get a NotImplementedException.
So could please someone help me with the following questions:
1) how can I start the upload e.g. with a RadUpload?
2) I want that the row over which the mouse holds the currently dragged item to be highlighted. Do I have to implement this on my own or is there a way to force RadGridView to do so?
Thanks in advance and best regards,
Stefan