Page 1 of 1

how do I turn something invisible

Posted: Mon May 04, 2015 2:25 pm
by Peter Vigoda

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


how do I turn something invisible

Posted: Tue May 05, 2015 3:52 am
by Yurii Orishchuk

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.