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
280
fixed headers with heirachacal data?
posted

I have two grids that are exactly the same, except one contains data that is older, and it includes heirarchical data (band[1]).

 

I have this in the initializelayout of both grids

 

protected void uwg_NoFutureApts_InitializeLayout(object sender, Infragistics.WebUI.UltraWebGrid.LayoutEventArgs e)
        {
            uwg_NoFutureApts.Bands[0].Columns[0].Header.Fixed = true;
            uwg_NoFutureApts.Bands[0].Columns[1].Header.Fixed = true;
            uwg_NoFutureApts.Bands[0].Columns[2].Header.Fixed = true;
            uwg_NoFutureApts.Bands[0].Columns[3].Header.Fixed = true;
            uwg_NoFutureApts.Bands[0].Columns[4].Header.Fixed = true;
            uwg_NoFutureApts.Bands[0].Columns[5].Header.Fixed = true;
            uwg_NoFutureApts.Bands[0].Columns[6].Header.Fixed = true;
            uwg_NoFutureApts.Bands[0].Columns[7].Header.Fixed = true;
            uwg_NoFutureApts.Bands[0].Columns[8].Header.Fixed = true;
            uwg_NoFutureApts.Bands[0].Columns[9].Header.Fixed = true;

            uwg_NoFutureApts.Bands[1].Columns[0].Header.Fixed = true;
            uwg_NoFutureApts.Bands[1].Columns[1].Header.Fixed = true;
            uwg_NoFutureApts.Bands[1].Columns[2].Header.Fixed = true;
            uwg_NoFutureApts.Bands[1].Columns[3].Header.Fixed = true;
            uwg_NoFutureApts.Bands[1].Columns[4].Header.Fixed = true;

        }

 

it is working fine for the grid without the child data, but for this grid, neither set of headers are fixed?  Is it not possible with child data?  if so, what am i doing wrong here?

 

thanx for any help.

Parents
No Data
Reply
  • 7694
    posted

    Normal 0 21 false false false BG X-NONE X-NONE /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-qformat:yes; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin-top:0cm; mso-para-margin-right:0cm; mso-para-margin-bottom:10.0pt; mso-para-margin-left:0cm; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri","sans-serif"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:"Times New Roman"; mso-fareast-theme-font:minor-fareast; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin;}

    Hello,

    I am trying to reproduce the issue, unfortunately to no avail... all columns are fixed. I use version=8.2.20082.1000, maybe you are not set the property  UltraWebGrid1.DisplayLayout.UseFixedHeaders = true;

    What am I missing?

     
Children