I have of grid which currently has Fixerd rows at the bottom. Is it possible to put a splitter at the top of the fixed rows to shrink or expand the fixed rows area. Or could RowScrollRegions do this. I don't want to see all rows in both regions - only the nonfixed in the upper region and fixed only in lower region.
Thakns,
Ron
Hi Ron,
You could use the 'SpecialRowSeparator' property on the 'Override' object of the grid's layout, setting it to 'FixedRows', like this:
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
{
e.Layout.Override.FixedRowStyle = Infragistics.Win.UltraWinGrid.FixedRowStyle.Bottom;
e.Layout.Override.SpecialRowSeparator = SpecialRowSeparator.FixedRows;
}
Does that meet your requirements?
I already have this. I need to be able to drag the row separator vertically to resize the FixedRows area. Is there any way to do this? RowScrollRegions? I'm trying to avoid having 2 grids.
Has the content been added?