I have the following spark Scroller
<s:VGroup width="100%" height="100%" gap="0">
<s:Scroller width="100%" height="100%">
<s:DataGroup width="100%" height="100%" itemRenderer="components.grid.GridItemRenderer">
<s:layout>
<s:VerticalLayout gap="0" />
</s:layout>
</s:DataGroup>
</s:Scroller>
</s:VGroup>
which is set to 100% width. The DataGroup is also set to 100% width. What I want to achieve is for the scroller's vertical scrollbar to OVERLAP the DataGrid. In other words I want the DataGroup to maintain the width of the outer VGroup even when the vertical scrollbar is displayed. I don't need the vertical scrollbar to move my content to the left, i want it to be displayed in top of that. Anybody has any idea?
Hope to have made myself clear enough, thanks to everyone!