Hi
I have both the label and disabled features of a button using formulas but it might be simpler to have the disabled feature referencing the label.
Is that possible?
Thanks
Paul
Hi
I have both the label and disabled features of a button using formulas but it might be simpler to have the disabled feature referencing the label.
Is that possible?
Thanks
Paul
Bind your label to a Page Variable, then just use a formula Bind to your Disabled property, for example like:
IF(Page_Var == “Off”, true, false)
Thanks John
So simple…when I have any problem on Appgyver, I need to get in the habit of asking myself, what if I bind to an page variable!? That is often the answer
Thanks again