Click here to Skip to main content
15,884,473 members
Articles / Web Development / ASP.NET
Article

Drag and drop GridView items for ordering, in ASP.NET 2.0

Rate me:
Please Sign up or sign in to vote.
4.07/5 (12 votes)
9 Dec 2007CPOL1 min read 203K   8.4K   59   47
Drag and drop GridView items for re-ordering of the items.

Screenshot -

Screenshot -

Introduction

In DragAndDropGridView, the user can rearrange a grid item via dragging and dropping. The user can drag a gridview item and then drop it on the item where he/she wishes to swap with. This control is very helpful for large grid items where we require to order items within the grid.

Using the code

Add the control to the toolbar or add a reference to Utility.dll in your project. Then, bind with the data source which you need to order. Now, add the DragAndDropEvent handler. DragAndDropEventArgs gives you the start index (source row index) and the EndIndex (destination row index). With these indices, update the data source and rebind the grid.

How this control works

This control is inherits from the GridView so that we can benefit from the GridView features.

HandleRow event

Handle the mouse down and mouse up events of each row in the gridview:

C#
protected override void OnRowDataBound(GridViewRowEventArgs e)
{
    base.OnRowDataBound(e);
   //set the java script method for the dragging

    e.Row.Attributes.Add("onmousedown", "startDragging" + 
                         this.ClientID + "(" + e.Row.RowIndex + ",this); ");
    e.Row.Attributes.Add("onmouseup", "stopDragging" + 
                         this.ClientID + "(" + e.Row.RowIndex + "); ");
}

Whenever the user clicks on a grid item, a div is added in the body and the innerHTML of the div copies the selected item. Now, set the document mouse move event for the moving item.

JavaScript
document.onmousemove = function ()
{
    if(__item" + this.ClientID + @" != null){
        __item" + this.ClientID + @".style.left=  
          window.event.clientX + document.body.scrollLeft + 
          document.documentElement.scrollLeft ;
        __item" + this.ClientID + @".style.top =   
          window.event.clientY + document.body.scrollTop + 
          document.documentElement.scrollTop ;
      }
}

When the user ends up on another grid item, we call stopDragging(). This method calls the post back event.

Register the post back event script

The __doPostBack method is not added into the page until we register the post back event on the client-side by calling the Page.ClientScript.GetPostBackEventReference(this, "") method, which will create the __doPostback method on the client side.

Raise the post back event

Handle the RaisePostBackEvent of the control for raising the drag and drop events:

C#
protected override void RaisePostBackEvent(string eventArgument)
{
    base.RaisePostBackEvent(eventArgument);
    //Handle the post back event

    //and set the values of the source and destination items

    if (Page.Request["__EVENTARGUMENT"] != null && 
        Page.Request["__EVENTARGUMENT"] != "" && 
        Page.Request["__EVENTARGUMENT"].StartsWith("GridDragging"))
    {
        char[] sep = { ',' };
        string[] col = eventArgument.Split(sep);
        DragAndDrop(this, new DragAndDropEventArgs(Convert.ToInt32(col[1]), 
                    Convert.ToInt32(col[2])));
    }
}

DragAndDropEventArgs

This EventArgs contains the start and the end index for the dragging event:

C#
public class DragAndDropEventArgs : EventArgs
{
    private int _startIndex;
    /// <summary>
    /// Index of the source item
    /// </summary>

    public int StartIndex
    {
        get { return _startIndex; }
    }

    private int _endIndex;
    /// <summary>
    /// Index of the destination item
    /// </summary>

    public int EndIndex
    {
        get { return _endIndex; }

    }
    public DragAndDropEventArgs(int startIndex, int endindex)
    {
        _startIndex = startIndex;
        _endIndex = endindex;
    }
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader Nagarro Software Pvt Ltd.
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 4 Pin
Erik CP725-May-15 2:47
professionalErik CP725-May-15 2:47 
QuestionMerged Cells in Grid view Pin
Ruwan Ratnayake8-Oct-14 5:55
Ruwan Ratnayake8-Oct-14 5:55 
QuestionDrag And Drop GridView Jquery Pin
amit_jain_online22-Apr-12 22:56
amit_jain_online22-Apr-12 22:56 
AnswerRe: Drag And Drop GridView Jquery Pin
Rupesh Burad23-Apr-12 18:31
Rupesh Burad23-Apr-12 18:31 
Amit,

Good way of promoting your code. This code was written when few peoples have knowledge about jquery.
GeneralMy vote of 1 Pin
Daniel Groh18-Jul-11 1:04
Daniel Groh18-Jul-11 1:04 
QuestionProblem with MasterPages and Content Sections... :( Pin
Zubair53020-Jun-11 9:42
Zubair53020-Jun-11 9:42 
Questiondraganddrop event doesn't fire in vb.net? Pin
kelmeister10-Feb-11 10:37
kelmeister10-Feb-11 10:37 
GeneralCSS or SkinID for DragAndDropGridView Pin
Rodrigo Esparza3-Nov-10 5:58
Rodrigo Esparza3-Nov-10 5:58 
GeneralPostback do not raise with drag and drop, only raise event on simple click.... (I'm using the sample code) Pin
Rodrigo Esparza21-Oct-10 5:09
Rodrigo Esparza21-Oct-10 5:09 
GeneralRe: Postback do not raise with drag and drop, only raise event on simple click.... (I'm using the sample code) Pin
Rodrigo Esparza21-Oct-10 6:08
Rodrigo Esparza21-Oct-10 6:08 
GeneralRe: Postback do not raise with drag and drop, only raise event on simple click.... (I'm using the sample code) [modified] Pin
Rupesh Burad21-Oct-10 18:13
Rupesh Burad21-Oct-10 18:13 
GeneralRe: Postback do not raise with drag and drop, only raise event on simple click.... (I'm using the sample code) Pin
Rupesh Burad21-Oct-10 18:51
Rupesh Burad21-Oct-10 18:51 
GeneralRe: Postback do not raise with drag and drop, only raise event on simple click.... (I'm using the sample code) [modified] Pin
Rodrigo Esparza22-Oct-10 4:36
Rodrigo Esparza22-Oct-10 4:36 
GeneralRe: Postback do not raise with drag and drop, only raise event on simple click.... (I'm using the sample code) Pin
Rupesh Burad23-Oct-10 22:55
Rupesh Burad23-Oct-10 22:55 
GeneralMasterPage Pin
Gorgur14-Aug-10 3:22
Gorgur14-Aug-10 3:22 
GeneralRe: MasterPage Pin
Rupesh Burad15-Aug-10 18:50
Rupesh Burad15-Aug-10 18:50 
Generalin Paging its not working Pin
umesh0930-Jun-10 5:54
umesh0930-Jun-10 5:54 
GeneralRe: in Paging its not working Pin
Rupesh Burad30-Jun-10 20:54
Rupesh Burad30-Jun-10 20:54 
Generalchanging checkbox triggers drag drop, Checkbox value not available in codebehind Pin
micheljansen1-Sep-09 3:10
micheljansen1-Sep-09 3:10 
GeneralRe: changing checkbox triggers drag drop, Checkbox value not available in codebehind Pin
Richard Johansson15-Sep-09 9:20
Richard Johansson15-Sep-09 9:20 
GeneralRe: changing checkbox triggers drag drop, Checkbox value not available in codebehind Pin
micheljansen16-Sep-09 7:51
micheljansen16-Sep-09 7:51 
GeneralRe: changing checkbox triggers drag drop, Checkbox value not available in codebehind Pin
Rupesh Burad19-Oct-09 19:39
Rupesh Burad19-Oct-09 19:39 
QuestionHow to make it work with a gridview and a sqldatasource Pin
Kaeghl27-Aug-09 11:48
Kaeghl27-Aug-09 11:48 
QuestionCant seem to get draganddrop event to fire [modified] Pin
Matt Jorgenson28-Jun-09 12:44
Matt Jorgenson28-Jun-09 12:44 
GeneralDrag and Drop drop in a paged view of grid control Pin
gayatri.neelema13-Jan-09 1:10
gayatri.neelema13-Jan-09 1:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.