how do I turn something invisible
Posted: Mon May 04, 2015 2:25 pm
in my app I have it so once I click a button a label turns visible. I wanna know how to make it invisible without having to refresh the app
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/
in my app I have it so once I click a button a label turns visible. I wanna know how to make it invisible without having to refresh the app
Hi Peter,
In common case you can use following JS code to make something invissible:
pre
Apperyio("componentName").hide();
/pre
And following code to show it:
pre
Apperyio("componentName").show();
/pre
Regards.