ARTICLE

GridView Sorting

Posted by Andrew Fenster Articles | ASP.NET Controls in C# September 29, 2010
We will describe a GridView sorting method we used in recent projects. Each GridView column can be sorted in ascending or descending order. An arrow indicates which column is being sorted, and in which direction.
Reader Level:
Download Files:
 

by Andrew Fenster and Boguslaw Wojcieszyk 

We're going to describe a GridView sorting method we used many times in recent projects.  Here are two images which show what it looks like.  

In the first image, the first column (UserName) is sorted in ascending order.  There is an arrow pointing up to indicate the sort column and sort direction.

1.gif

In the second image, the second column (Name) is sorted in descending order.  Again, the arrow indicates the sort column and direction.  We can sort any column by clicking on the header.  We can reverse the sort direction by clicking again.  The arrow shows which column is being sorted and in which direction.

2.gif 

The code to create this grid is in the attached project.  Here's a brief explanation:

The Markup

Here is the markup for the GridView.  

 3.gif

Each column includes a HeaderTemplate.  The HeaderTemplate contains a LinkButton.  A LinkButton is a button that looks like a hyperlink.  We set Font-Underline=False, so the links look like plain text, but that is a matter of preference.  The important thing to understand is that the header for every column looks like text, but is really a button.  When the button gets clicked, the gridUsers_Sort method gets called.

The Code
We define sort order as an enum.

4.gif 

When the page loads, we determine the grid sort order and the current sort column.  These values are stored in the ViewState.

5.gif 

When we're done processing, and the page is about to render, we save the sort order and sort column back into the ViewState.  Then we call PositionGlyph() to put the sort arrow into the grid's header.

6.gif 

PositionGlyph() creates an Image control.  If the sort order is ascending, the Image control will have an image of an arrow pointing up.  If the sort order is descending, the Image control will have an image of an arrow pointing down.  The Image control gets inserted in the column being sorted.

7.gif 

When the user clicks the LinkButton at the top of a column, the gridUsers_Sort() method gets called.  We determine which column is being sorted by looking at the LinkButton's CommandArgument.  We update the current sort order and sort column and then we bind the grid.

8.gif 

Whenever we bind the GridView, we sort the data first.

9.gif 

Going Further

Most of this code is the same for any grid you want to sort.  The Page_Load(), Page_PreRender(), PositionGlyph() and grid_Sort() methods don't change.  Rather than cut and paste these methods over and over, they could all go in a base class.  

erver'>
Login to add your contents and source code to this article
post comment
     

Hi I want same thing implemented in c# window application

Posted by Ayush Gaba Oct 26, 2012

Hi I want same thing in window application in c#

Posted by Ayush Gaba Oct 26, 2012

Hi I want same thing in window application in c#

Posted by Ayush Gaba Oct 26, 2012

how to get the above code

Posted by zahid hazoor Mar 29, 2012

very helpfull

Posted by carlos calvo Jul 11, 2011
COMMENT USING
PREMIUM SPONSORS
DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and add new content to existing PDF documents from within your applications.
Join a Chapter
SPONSORED BY
  • PDF reports have never been easier to create. With our included WYSIWYG Designer, you can layout your reports, set up your data source and let DynamicPDF ReportWriter do the rest.