I can't see in the API where to make a button visible. I tried Tiggr("buttonName").show() but it didn't work.
I can't see in the API where to make a button visible. I tried Tiggr("buttonName").show() but it didn't work.
On page load:
code
Tiggr('b1').hide();
/code
on button click:
code
Tiggr('b1').show();
/code
If you use Visible property, you need to select the button and then get the parent
code
Tiggr('b1').parent().show();
/code
We'll fix the selection so you don't need to get the parent().