This is a migrated thread and some comments may be shown as answers.

Grid / Items Drag-and-drop

2 Answers 77 Views
Grid
This is a migrated thread and some comments may be shown as answers.
George
Top achievements
Rank 1
George asked on 13 Sep 2011, 08:57 AM
Hello, i would like me to ask you how to reorder the Shipped Orders except for moving them to the recycle bin using the OnRowDropping event.

Thank you very much.    

2 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 13 Sep 2011, 10:59 AM
Hello George,

I suppose you want to copy records from one grid to another.Please check the following demo
Grid / Items Drag-and-drop and remove below code.
C#:
protected void grdPendingOrders_RowDrop(object sender, GridDragDropEventArgs e)
{
...............
...............
 pendingOrders.Remove(tmpOrder); // Remove this line of code
...............
...............
}

Thanks,
Shinu.
0
George
Top achievements
Rank 1
answered on 13 Sep 2011, 01:08 PM
No, i want to reorder the shipped orders not by sorting but with drag and drop. Also i want to export all the shipped orders to an excel file. How could i make this?

Thank you very much.
Tags
Grid
Asked by
George
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
George
Top achievements
Rank 1
Share this question
or