Hello,
Please take a look at the link below:http://samples.infragistics.com/2008.2/webfeaturebrowser/default.htmGrid -> Cell Merging.
If doesn’t help please provide more additional information, because I am not sure where is the issue.
Тhanks
One point on Merge you can use the custom implementation for the Merge.
Example:
return a column from the recordset
COLUMN DATA COLUMN COUNT
A 3A 3A 3
B 2B 2
C 1
Use column count column and mege the cell data that needs the merge functionality. Just a thought :) I am not sure how does it fit your requirement.
2) Freezing Columns
From your sample I observed you are using the Ultragrid object but in the Initilize event you will not get that object use the eventorg e to handle the scenario as you can find it below>
{
e.Layout.TableLayout = TableLayout.Fixed;
e.Layout.Bands[0].Columns[2].Header.Fixed = true;
e.Layout.Bands[0].Columns[4].Header.Fixed = true;
}