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
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.
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
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.
Does anyone know the answer? Can I have horizontal and vertical scroll bars in each scroll region?