Issue with enabling loading option for form submission

Hi Team :wave: How to enable this Loading option when the form submission is in process?

Hi @tasteful_possum! A way to accomplish that is to create a boolean state variable that you can name something like “Is submitting”. Then, on the form “on submit” interaction you can set the value of that state variable to true and, after it finishes submitting, you can set it to false.

Docs about interactions and state: https://docs.plasmic.app/learn/interactions/

Thanks @tiago ! It works!