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
995
win grid groupby column rows scrolling
posted

When I group by a column, and get say three values grouped by, is it possible to expand a value and scroll without having the group by value header row scroll (or any of the group by value rows)?

Thanks.

Parents
No Data
Reply
  • 71886
    Verified Answer
    Offline posted

    Hello sunibla,

    I believe that you are looking for the 'Fixed' property on the grid rows. So you could try the following code in order to achieve the desired behavior:

            private void ultraGrid1_InitializeGroupByRow(object sender, Infragistics.Win.UltraWinGrid.InitializeGroupByRowEventArgs e)
            {
                e.Row.Fixed = true;
            }
    

     

    Please let me know if this meets your requirements.

Children