I m getting problem of painting multiple grid in one grid.
I have also tried below coding in initializelayout event. But it is not working.
e.Layout.MaxRowScrollRegions = 1;
Did you also try setting e.Layout.MaxColScrollRegions = 1? Another option might be to clear any existing ones:
e.Layout.ColScrollRegions.Clear();e.Layout.RowScrollRegions.Clear();
-Matt