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.