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
75
Reg:Freeze(Fixed) the columns in ultragrid
posted
I am trying to freeze(Fixed) the columns with the following code.I am also merging the cell based on the requirement.
 
 protected void UltraGrid_InitializeLayout(object sender, LayoutEventArgs e)
    {
        e.Layout.UseFixedHeaders = true;
        UltraGrid.Bands[0].Columns[0].Header.Fixed = true;
        UltraGrid.Bands[0].Columns[1].Header.Fixed = true;
        UltraGrid.Bands[0].Columns[2].Header.Fixed = true;
        UltraGrid.Bands[0].Columns[3].Header.Fixed = true;
        UltraGrid.Bands[0].Columns[4].Header.Fixed = true;
    }
 
When I try to freeze (Fixed) some columns the rest of columns are getting disturbed.When i try the sample with out freezing its working fine.Can you please  give me a sample examples to solve  the problem.
 
Parents
No Data
Reply Children
No Data