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
140
How can I freeze the first column of my grid when scrolling horizontally?
posted

None

Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted


            private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
            {
                e.Layout.UseFixedHeaders = true;
                e.Layout.Bands[0].Columns[0].Header.Fixed = true;
            }

Children