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.
Thanks in advance.
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.
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.