Hi,
Is there any way I could freeze summaries row on bottom of the grid that while vertical scrolling summaries stay visible for users all the time?
Thanks!
Try something like this:
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { e.Layout.Override.SummaryDisplayArea = SummaryDisplayAreas.BottomFixed; }
Thanks Mike!