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

Two way sorting in DataGrid using Bound Columns

Rate me:
Please Sign up or sign in to vote.
2.74/5 (17 votes)
19 Aug 20041 min read 132.9K   30   8
Two way sorting in DataGrid using bound columns.

Introduction

In this small code snippet, I will show how to perform two way sorting in DataGrid using bound columns. Remember, there can be numerous ways you can sort the items in the DataGrid and this is just one of them.

Adding Bound Columns:

First, add some columns in your DataGrid using Property Builder. Since this is an intermediate level article, you should know how to perform this. Once you add the bound columns, give the DataGrid a data source and populate it with some data.

Sorting DataGrid both ways:

Okay, up till now, the DataGrid should be populated with some data. Now in the Properties window of the DataGrid, set AllowSorting = "true". Okay, now sorting is enabled and all you need now is the actual code that sorts the DataGrid.

DataGrid Sorting Code:

Whenever the Columns header is clicked, SortCommand event is fired. So, place the code below in the SortCommand event handler:

C#
private void Sort_DataGrid(object source, 
  System.Web.UI.WebControls.DataGridSortCommandEventArgs e)
{
    // Never use Queries like this always use Stored procedures
    SqlCommand myCommand = new SqlCommand("SELECT * FROM Categories", 
                                                         myConnection);
    myCommand.CommandType = CommandType.Text;
    SqlDataAdapter myAdapter = new SqlDataAdapter(myCommand);
    DataSet ds = new DataSet();
    myAdapter.Fill(ds,"Categories");
    DataView dv = new DataView(ds.Tables["Categories"]);
    if( (numberDiv%2) == 0 )
        dv.Sort = e.SortExpression + " " + "ASC";
    else
        dv.Sort = e.SortExpression + " " + "DESC";
    numberDiv++;
    myDataGrid.DataSource = dv;
    myDataGrid.DataBind();
}

In the above code, "numberDiv" is the public static Int32 variable which keeps count of the even and odd number of mouse clicks on the header. The heart of this example is the DataView object which has a SortExpression property, it represents the name of the column clicked.

And lastly, just assign the DataSource to the DataView and bind the grid on the page.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
My name is Mohammad Azam and I have been developing iOS applications since 2010. I have worked as a lead mobile developer for VALIC, AIG, Schlumberger, Baker Hughes, Blinds.com and The Home Depot. I have also published tons of my own apps to the App Store and even got featured by Apple for my app, Vegetable Tree. I highly recommend that you check out my portfolio. At present I am working as a lead instructor at DigitalCrafts.




I also have a lot of Udemy courses which you can check out at the following link:
Mohammad Azam Udemy Courses

Comments and Discussions

 
GeneralDatagrid sorting after importing Excel sheet Pin
bhatted18-Apr-11 10:39
bhatted18-Apr-11 10:39 
GeneralAscending and Descending Sorting with DataGrid Columns Pin
John Stagich19-Sep-08 6:46
John Stagich19-Sep-08 6:46 
Generalthanks Pin
roxana-chc3-Jan-07 6:47
roxana-chc3-Jan-07 6:47 
Generalstatic member variable Pin
Ashley van Gerven20-Aug-04 21:44
Ashley van Gerven20-Aug-04 21:44 
GeneralRe: static member variable Pin
azamsharp21-Aug-04 6:23
azamsharp21-Aug-04 6:23 
GeneralRe: static member variable Pin
Christian Calderon15-Feb-05 4:00
Christian Calderon15-Feb-05 4:00 
GeneralRe: static member variable Pin
L3go1as17-Oct-05 17:00
L3go1as17-Oct-05 17:00 
For those wanting to know how ..


if (ViewState["SortOrder"] ==null)<br />
{<br />
    ViewState["SortOrder"] = " ASC";<br />
}<br />
else if (ViewState["SortOrder"].ToString () == " ASC" )<br />
{<br />
    ViewState["SortOrder"] = " DESC";<br />
}<br />
else<br />
{<br />
    ViewState["SortOrder"] = " ASC";<br />
}<br />
SortField = SortExpression.ToString () + " " + ViewState["SortOrder"];

QuestionRe: static member variable Pin
praveen.aru12-Jan-07 5:54
praveen.aru12-Jan-07 5:54 

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.