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

PickerList: using SpinnerList with DropDownPopUpContentManager does not allow selection of items by click/tap #1738

Closed joshtynjala closed 5 years ago

joshtynjala commented 6 years ago

See thread: https://forum.starling-framework.org/topic/pickerlist-close-on-click-without-change-selection

joshtynjala commented 5 years ago

Code to reproduce this issue.

var list:PickerList = new PickerList();
list.popUpContentManager = new DropDownPopUpContentManager();
list.listFactory = function():SpinnerList
{
    return new SpinnerList();
};
list.dataProvider = new ArrayCollection(
[
    { label: "One" },
    { label: "Two" },
    { label: "Three" },
]);
this.addChild(list);