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!
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.