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
1660
How to add column freeze option in a grid with 3 tier group header?
posted

I have a grid as shown in the picture below.

I want to freeze the boxed columns alone. Please assist me to achieve this.

Note: This grid has headers as the given format below.

                                      Main Group Header
                                       Sub Group Header
               Column 1            Column 2          Column 3

Thanks in advance.

  • 48586
    posted

    Hello,

    I am just checking about the progress of this issue. Let me know If you need my further assistance on this  issue?

    Thank you for using Infragistics Components.

     

  • 48586
    posted

    Hello,

     

    you could use Fixed property of heard object, but you should keep in mind that it won’t works if you are using Row-Layout mode.

     

    http://help.infragistics.com/Help/Doc/WinForms/2015.1/CLR4.0/html/Infragistics4.Win.UltraWinGrid.v15.1~Infragistics.Win.UltraWinGrid.HeaderBase~Fixed.html:

     

    Specifies whether the header is fixed. When a header is fixed column(s) associated with the header remain in view when the grid is scrolled horizontally. This property is settable on column headers and group headers. If there are groups, then the Fixed property settings off the group headers will be used and fixed property settings off the column headers will be ignored. Attempting to set it on a BandHeader object will lead to a NotSupportedException. NOTE: This property is ignored in Row-Layout mode as headers can't be fixed in Row-Layout mode. You must enable the fixed-headers functionality by settingUltraGridLayout.UseFixedHeaders to true in order for this property to have any effect.

     

    Please let me know if you have any further questions.