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
550
Visibility of values in merged columns while scrolling
posted

My problem:

I merged the first column of a grid, where the value in this column only changes, say, every 100 rows.

band.Columns[0].SortIndicator = SortIndicator.Descending;
band.Columns[0].MergedCellStyle = MergedCellStyle.OnlyWhenSorted;
band.Columns[0].MergedCellEvaluationType = MergedCellEvaluationType.MergeSameText;

While scrolling, this value gets out of sight and out of mind :-( . This column seems to be empty now, until the next ((different) value appears.

Is it possible to keep the value on top of the column while scrolling until the next value appears?