Hi,
After I split the grid: this.Grid.DisplayLayout.RowScrollRegions[0].Split();
One can only find one scroll bar in the bottom of the screen. Is it possible to have scroll bar in each splitted region? Same question applies when splitting ColScrollRegions. I would like to have individual scroll bars for each splitted region. Is it possible?
Thank you,
Ada
Hi Ada,
If I understand your question, then the answer is no. If you split the RowScrollRegion, then you will get two vertical scrollbars, but only one horizontal scrollbar - the column scrolling has to stay in synch.
It sounds like what you want is not a new scroll region, but a completely new grid displaying the same data source.
I want to add a question hear:
Is it possible to synchronize the scrolling of two grids showing two different parts of information of the same items?
Thank you
Yes, you probably can. It depends on exactly what you want, but you can use events like Before/AfterRowRegionScroll or Before/AfterColRegionScroll to trap when the grid scrolls. Then you can use the methods or properties on the ActiveRowScrollRegion or ActiveColScrollregion to scoll to the position you want.