RadGridView Merge Cells
Date Posted | Product | Author |
---|---|---|
June 24, 2014 | RadGridView | Dimitar Karamfilov |
Problem
A common question regarding RadGridView is whether it supports merging cells. This article aims to answer this question in detail.
Solution
There are three ways to merge cells in RadGridView:
1. Use HtmlViewdefinition – merging will be applied to both data cells and header cells.
2. Use ColumnGroupView definition – merging will be applied like in the html view. Also you can visually separate your data by adding custom groups.
3. Use the styling capabilities of the grid to hide the borders between the cells in order to visually display the cells as merged.
Now, let's have a closer look at each approach:
1. The HtmlView ** definition** gives you the opportunity to merge the cells like in html tables. You can just set the Colspan and RowSpan properties. For example, you can create a simple view as follows:
2. The ColumnGroupView definition allows you to group the columns in the grid header. This is achieved by creating groups and adding rows to them:
3. You can implement custom solution which will visually merge the cells with equal values. First, you can create a methods that iterates through the grid cells and compares their values (one for vertical and one for horizontal merging). Also, in this methods you can hide the text and set the border for the cells.
Also we can add a support for printing. And this can be achieved by painting a white lines on top of the borders and white space in the cells that have duplicate values.
Please note that this approach has few limitations. For example, the cell editing functionality will remain as in a usual grid (you cannot edit the value for all cells at one place). The selection behavior will also remain the same. And the layout should be manually updated after any change made by the user.
A complete solution in C# and VB.NET can be found here.