I have to merge only my column headers(not the column values).
In which method I need to write the merging.
I am able to implement the same in .Net gridView, but i couldnt using infragistics wedgrid.
Here is the .Net gridview code. Please help me to convert the same functionality using Infragistics.
{
cl.ColumnSpan = e.Row.Cells.Count;
e.Row.Cells.Clear();
cl.HorizontalAlign = HorizontalAlign.Center;
cl.BackColor = Color.LightBlue;
e.Row.Cells.Add(cl);
}