How to hide the button after it is clicked

0
Hello everyone, How to make a button invisible once it is clicked
asked
1 answers
1

There are multiple ways to do this, depending on the intended type of visibility:

  1. Use the SASS/CSS :focus or active element to activate a display: none code (requires some trial and error)
    1. .conditional-btn:active{
        display: none;
      }

       

  2. Use a non-persistent or persistent entity with a boolean that is switched when the button is pressed
    1. Activate microflow with a change object action and change the boolean and refresh the object
    2. Apply conditional visibility on the button
answered