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
1635
Fixed rows and RowScrollRegion
posted

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

Parents
No Data
Reply
  • 71886
    Offline posted

    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?

Children