Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
30
unable to merge cells using the Infragistics UltraGrid version 19.2
posted

I would like to apply merging to all cells in the UltraGrid and they will merge when their values match except for the date column and have lines between separators lines.

(Please refer to the below screenshot, this is how I would want to achieve)

www.infragistics.com/.../pastedimage1654700555869v1.png

Tried with the below statements but couldn't able to achieve what I want,

//ultraGrid1:rows[vcount]:Cells[i]:hidden=TRUE.
//ultraGrid1:DisplayLayout:Bands[0]:Columns[0]:MergedCellStyle = MergedCellStyle:Always.
//ultraGrid1:DisplayLayout:Override:MergedCellStyle = MergedCellStyle:always.
//UltraGrid1:DisplayLayout:Bands[0]:Columns[0]:MergedCellEvaluationType = MergedCellEvaluationType:MergeSameText.
// ultraGrid1:rows[vcount - 1]:Cells[i]:Appearance:BorderColor = System.Drawing.Color:transparent.
//ultraGrid1:rows[vcount - 1]:RowSpacingAfter=0.
//ultraGrid1:DisplayLayout:Override:MergedCellStyle = Infragistics.Win.UltraWinGrid.MergedCellStyle:Never.
//ultraGrid1:DisplayLayout:Override:MergedCellStyle = Infragistics.Win.UltraWinGrid.MergedCellStyle:OnlyWhenSorted.
//ultraGrid1:DisplayLayout:Override:MergedCellContentArea = Infragistics.Win.UltraWinGrid.MergedCellContentArea:VirtualRect.

Any suggestions/advice will be greatly appreciated. Thanks in advance!