feathersui / feathersui-starling

User interface components for Starling Framework and Adobe AIR
https://feathersui.com/learn/as3-starling/
Other
915 stars 386 forks source link

GroupedList doesn't have elastic edges #1770

Closed subdan closed 5 years ago

subdan commented 5 years ago

When I set verticalScrollPolicy to ScrollPolicy.ON and try to scroll GroupedList nothing happens. It doesn't scroll.

tasksGroupedList = new GroupedList();
tasksGroupedList.verticalScrollPolicy = ScrollPolicy.ON;
tasksGroupedList.layoutData = new AnchorLayoutData(0, 0, 0, 0);
addChild(tasksGroupedList);

It should have elastic edges. Why is it not?

subdan commented 5 years ago

Sorry, It's my issue.