Popup window and Visibility propriety
Posted: Wed Jan 08, 2014 9:56 am
Hello,
How can I specify in a javascript If Then stament to open an Appery popup window or to change the Visibility propriety of a Label to True?
Thanks!
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
Hello,
How can I specify in a javascript If Then stament to open an Appery popup window or to change the Visibility propriety of a Label to True?
Thanks!
Hi Bruno,
Run this code to open popup:preAppery.navigateTo('ScreenName', {
transition: 'pop'
});/preWhere 'ScreenName' is a popup name.
To change visibility property run: preAppery("labelName").css("visibility","visible");/preWhere 'labelName' is a component name.