The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
I need to create, essentially, a "footer"... in the grid... really just a header at the last row, that does not scroll.
Other than creating a split at the next to last row, is there any way to do this. What I don't like about the split is the potential of showing the same row twice, and that's confusing to folks.
It's NOT a databound grid.
Thanks
Eric
ADAdministrator Syncfusion Team August 12, 2003 12:14 PM
Right now, the only way to do this is to create a second grid with just one row (or zero rows showing just the header row) that is placed below your other grid. You could override QueryColWidth and return the same column sizes from the parent grid so that the column sizes are in sync.
You could embed both grids inside a UserControl. That way you could treat that user control with two grids as one entity.
Stefan
ADAdministrator Syncfusion Team August 12, 2003 12:36 PM
Attached is a rough sample of what Stefan described. It has a usercontrol with scrollbars and 2 grids added. In this sample, the application sets the summary row to contain formula cells that sum the contents of the columns.