I am new to Infragistics. I am using an ultrawebgrid which is bound to a strongly typed dataset. I have set the gridsize and column size (all in percentages). The problem is that when I resize any one of the columns, the columns are resized, the horizontal scroll bar gets enabled but the rightmost headers disappear depending on the extent to which I resized the column. So the display looks as though the data is overflowing out of the grid. Please help me with this issue.
This is how I set the column width:
UltraWebGrid1.Width = Unit.Percentage(97);
UltraWebGrid1.Column(0).Width = Unit.Percentage(20);
and so on... I am using fixed headers and StationaryMargins as Header.
try using pixel instead of percentage.