Articles in this section
Category / Section

How to add sort icon, up or down arrow, in the WinForms GridControl's column header?

1 min read

Add sort icon, updown arrow in grid

By default, there is no build-in support to display sort icon in the Header CellType. You can achieve this by using the following work around.

Solution

You can add the GridSortColumnHeaderCellModel to the GridControl's cell model for adding sort icon in the HeaderCell. Then, assign the added cell model as the CellType and set the Tag property to either ListSortDirection.Ascending or ListSortDirection.Descending to show the up/down arrow mark.

The following code example is for adding GridSortColumnHeaderCellModel to the gridcontrol.CellModel.

C#

//Adding the column Header cell
this.gridControl1.CellModels.Add("ColumnHeaderCell", new GridSortColumnHeaderCellModel(this.gridControl1.Model));
this.gridControl1[0,1].CellType = "ColumnHeaderCell";
//Setting the Sort Order as Ascending for the first column
this.gridControl1[0,1].Tag = ListSortDirection.Ascending;
this.gridControl1[0,2].CellType = "ColumnHeaderCell";
//Setting the Sort Order as Descending  for the Second column
this.gridControl1[0,2].Tag = ListSortDirection.Descending;

 

VB

'Adding the column Header cell
Me.gridControl1.CellModels.Add("ColumnHeaderCell", New GridSortColumnHeaderCellModel(Me.gridControl1.Model))
Me.gridControl1(0,1).CellType = "ColumnHeaderCell"
'Setting the Sort Order as Ascending for the first column
Me.gridControl1(0,1).Tag = ListSortDirection.Ascending
Me.gridControl1(0,2).CellType = "ColumnHeaderCell"
'Setting the Sort Order as Descending  for the Second column
Me.gridControl1(0,2).Tag = ListSortDirection.Descending

 

In the following screenshot, Columns A and B have sort icon.

Add sorting to first two columns in grid

Samples:

C#: AddingSortIcon-C#

VB: AddingSortIcon-VB

Note:

In this work around, sort icon is added only to the column. When you want to perform sorting operation as per the sort direction, you can refer to the following sample. \AppData\Local\Syncfusion\EssentialStudio\<Installed version>\Windows\Grid.Windows\Samples\Grid Layout\Sorting Demo in a sample browser.

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied