Bilbosax opened a new issue #1081:
URL: https://github.com/apache/royale-asjs/issues/1081
I can confirm that scrollToIndex on a Jewel List works correctly under
normal circumstances. I can also confirm that when the List is setup with a
HorizontalLayout bead, or a TileLayout bead, scrollToIndex does nothing. So in
the following example, scrollToIndex will fail:
```
photoList.scrollToIndex(30);
<j:List localId="photoList" className="photoItemRenderer">
<j:beads>
<j:HorizontalLayout/>
</j:beads>
</j:List>
```
It will also fail when set up like this:
```
photoList.scrollToIndex(30);
<j:List localId="photoList" className="photoItemRenderer">
<j:beads>
<j:TileLayout/>
</j:beads>
</j:List>
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]