How to link a sometimes visible component to two conditions

I have a two sided app. I want a button to appear if a number is accepted on both sides. How can I do that if the sometimes visible option only uses one condition?

Hi @Luka,

One of the ways to implement this:

  • I assume “number” belongs to some record on some collection
  • in this collection create 2 true/false properties, call them, say “isAdminAccepted” and “isUserAccepted”
  • when Admin and User accepts, mark each respective property to True
  • make a button conditionally visible isAdminAccepted = True. Then “wrap” this button to a group and make this group conditionally visible isUserAccepted = True.
  • As a result, button will be visible only when both conditions are true.

I’m skipping obvious things like access to current record etc.

Best,
Victor.