aspnet-7843-components-grid-view-concepts-merge-data-cells.md
The ASPxGridView can automatically merge adjacent cells with the same values. Set the ASPxGridViewBehaviorSettings.AllowCellMerge property to true to allow the grid to merge cells, or set the GridViewDataColumnSettings.AllowCellMerge property to true to enable this feature only for specific columns.
Once cell merge is enabled, you can handle the ASPxGridView.CustomCellMerge event to implement cell merge manually. The event fires for every adjacent pair of cells in a column. If the cells are merged, the resulting cell value is equal to the value of the first cell.
The cell merge feature is not supported in adaptive modes.
When cell merge is enabled, the following limitations apply to the grid features:
See Also