We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
var dropDownSelection; dropDownSelection = Alloy.Globals.abx.createDropdown({ titles : ["First", "Second", "Third", "Fourth"], color : "#fff" });
dropDownSelection.activeItem = 2; // bydefault set Third variable to be selected
The text was updated successfully, but these errors were encountered:
hii any updates..??
Sorry, something went wrong.
Hi, I've just pushed the 1.6.2 update.
You can now pass an index property to the creation object:
var dropDownSelection = Alloy.Globals.abx.createDropdown({ titles : ["First", "Second", "Third", "Fourth"], index: 2 });
hi thankyou.... it is working perfectly fine... :)
I'll leave this open as this should work too but does not yet.
dropDownSelection.activeItem = 2;
Still need to figure out why that fails.
manumaticx
No branches or pull requests
var dropDownSelection;
dropDownSelection = Alloy.Globals.abx.createDropdown({
titles : ["First", "Second", "Third", "Fourth"],
color : "#fff"
});
dropDownSelection.activeItem = 2; // bydefault set Third variable to be selected
The text was updated successfully, but these errors were encountered: