Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Closed
joshtynjala opened this issue Jun 20, 2018 · 1 comment
Labels
Milestone

Comments

@joshtynjala
Copy link
Member

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

@joshtynjala joshtynjala added this to the 3.6 milestone Jun 20, 2018
@joshtynjala
Copy link
Member Author

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);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant