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
AD
Administrator
Syncfusion Team
August 12, 2003 05:14 PM UTC
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
AD
Administrator
Syncfusion Team
August 12, 2003 05:36 PM UTC
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.
ER
ERobishaw
August 14, 2003 02:01 PM UTC
Very clever.
Thanks