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