Hi,
I can disable the fixed headers feature with this code: e.Layout.UseFixedHeaders = false
How can I disable fixed rows feature?
I’m using NetAdvantage 2009 Volume 2.
Thanks.
Oh, okay. ScrollRegions and Fixed rows are two different (but similar) features.
I tried to solve the related problem with e.Layout.Override.FixedRowIndicator = FixedRowIndicator.None on InitializeLayout event, but I didn’t have sucess.
However, I solved this with myUltraGrid.DisplayLayout.MaxRowScrollRegions = 1.
I don’t know what happened, but it’s OK now.
Neither FixedRows nor FixedHeaders are enabled by default. So if these features are on, something in your application is turning them on. You might be better off trying to find out where they are turned on and simply not do that, rather than trying to turn them off.
In any case, the properties which control fixed row are on the Override object.So there's an Override on the DisplayLayout and also on each band of the grid. The property you are looking for is probably FixedRowIndicator.