Open robinzimmermann opened 2 months ago
There are times when you want the form to clear if successful, but not if it fails. For example:
abc
I would like the form to clear if the submission was successful, but not clear if there was an issue with one of the fields.
FYI st.experimental_rerun() is now just st.rerun(). But it doesn't have the desired effect, it left the form fields still populated even when the submission was successful.
st.experimental_rerun()
st.rerun()
There are times when you want the form to clear if successful, but not if it fails. For example:
abc
.I would like the form to clear if the submission was successful, but not clear if there was an issue with one of the fields.