Click here to Skip to main content
Licence CPOL
First Posted 24 May 2009
Views 22,627
Downloads 456
Bookmarked 20 times

Demonstration of Row Swapping in a Grid View

By | 24 May 2009 | Article
An article to demonstrate row swapping in a grid view
RowSwappingInGrid

Introduction

Once I came across a situation where the client wanted to swap the rows in a GridView. I will show a sample example of doing the same.

Straight to the Program

The datasource is basically a datatable with two columns viz. Name, Address:

DataTable dtsource = new DataTable();

//Adding columns to datatable
dtsource.Columns.Add("Name");
dtsource.Columns.Add("Address");

dtsource.Rows.Add("Name1", "Address1");
dtsource.Rows.Add("Name2", "Address2");
dtsource.Rows.Add("Name3", "Address3");
dtsource.Rows.Add("Name4", "Address4");
dtsource.Rows.Add("Name5", "Address5");
dtsource.Rows.Add("Name6", "Address6");
dtsource.Rows.Add("Name7", "Address7");
dtsource.Rows.Add("Name8", "Address8");
dtsource.Rows.Add("Name9", "Address9");
dtsource.Rows.Add("Name10", "Address10");

I consume the same for the GridView at the page load event.

I wrote the swapping logic in the Row Command event since it is the event that gets fired when a control (e.g. Button) is clicked that resides inside the GridView

Obviously, the Button’s CommandName as well as the Command Argument need to be set

In this case, the CommandName is set to Up & Down respectively while I pass the grid’s row id in the Command Argument.

CommandName="Up" CommandArgument=<%# Container.DataItemIndex %>

The Swap method whose signature is Swap(int rowid, string option) does the row swapping:

/// <summary>
/// Function name: Swap
/// Purpose: Swaps the grid's row
/// </summary>
/// current row id of the grid
/// Up or Down
private void Swap(int rowid, string option)
{
    //Logic
    //e.g.
    // temp  = val1
    // val1 = val2
    //val2 = temp

    if (option == "UP")
    {
        for (int i = 0; i <= 1; i++)
        {
            string temp = grdRowMovementDemo.Rows[rowid - 1].Cells[i].Text;
            grdRowMovementDemo.Rows[rowid - 1].Cells[i].Text = 
			grdRowMovementDemo.Rows[rowid].Cells[i].Text;
            grdRowMovementDemo.Rows[rowid].Cells[i].Text = temp;
        }
    }
    else
    {
        for (int i = 0; i <= 1; i++)
        {
            string temp = grdRowMovementDemo.Rows[rowid].Cells[i].Text;
            grdRowMovementDemo.Rows[rowid].Cells[i].Text = 
			grdRowMovementDemo.Rows[rowid + 1].Cells[i].Text;
            grdRowMovementDemo.Rows[rowid + 1].Cells[i].Text = temp;
        }
    }
}

I wrote the calling function in the RowCommand event of the GridView. It is as under:

int rowid = Convert.ToInt32(e.CommandArgument);

if (e.CommandName == "Up")
{
    if (rowid > 0) // Rowid == 0 indicates that the top most row is reached
    Swap(rowid, "UP");
}

if (e.CommandName == "Down")
{
    if (rowid != grdRowMovementDemo.Rows.Count - 1)	// the bottom most row
						// is reached
    Swap(rowid, "DOWN");
}

Conclusion

I have shown one of the ways by which we can achieve the row movement in the GridView. Any better suggestion/solution is always welcome.

History

  • 24th May, 2009: Initial post

License

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

About the Author

Niladri_Biswas

Software Developer (Senior)
Software industry
India India

Member

Lead Engineer at HCL Technologies Ltd.
Code Project MVP 2012

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 PinmemberP.Salini20:36 27 Apr '12  
Questionthe data switch doesn't appear [modified] Pinmemberschaerdz21:37 29 Jan '12  
Questiontest new message Pinmemberwaziristan20:25 22 Jan '12  
GeneralThanks for the really useful article. I have modified the Swap method to actually modify the underlying data (if using a DataSet) Pinmembersteveprowland6:02 28 Nov '09  
GeneralMy vote of 1 Pinmembermichael.d6:49 10 Jul '09  
GeneralList of Entities Pinmemberalhambra-eidos20:25 26 May '09  
GeneralRe: List of Entities PinmemberNiladri_Biswas0:36 27 May '09  
GeneralObservation and suggestion PinmemberJeffCirceo8:12 26 May '09  
GeneralThis does not change the underlying datasource Pinmemberzlezj21:16 24 May '09  
GeneralRe: This does not change the underlying datasource PinmemberNiladri_Biswas0:39 27 May '09  
GeneralRe: This does not change the underlying datasource Pinmemberzlezj22:40 27 May '09  
GeneralRe: This does not change the underlying datasource PinmemberIrwan Hassan4:16 18 Jun '09  
GeneralRe: This does not change the underlying datasource Pinmemberzlezj4:35 18 Jun '09  
GeneralRe: This does not change the underlying datasource Pinmemberwaziristan20:23 22 Jan '12  
GeneralRe: This does not change the underlying datasource Pinmemberwaziristan20:24 22 Jan '12  

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

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120517.1 | Last Updated 24 May 2009
Article Copyright 2009 by Niladri_Biswas
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid