I was wondering if there is a way to set the value of the the submit button to True right after the user clicks on it, unless the user refreshes the page? I know it does change to true right after the user click on it automatically. However, I want to make sure it doesn’t go back to false if the user clicks on another submit button.
I think there must be a way to do so with the session button, but I don’t know how.
You can use session_state to store information if you need to extend the memory of buttons. I just recorded a tutorial if you want to check it out. Session State Introduction
You can add a callback function to your form submit button like this:
if 'submitted' not in st.session_state:
st.session_state.submitted = False
def update():
st.session_state.submitted = True
# Your Form Here
st.form_submit_button('Submit', on_click=update)
if st.session_state.submitted:
st.write('Form submitted')
Thanks for stopping by! We use cookies to help us understand how you interact with our website.
By clicking “Accept all”, you consent to our use of cookies. For more information, please see our privacy policy.
Cookie settings
Strictly necessary cookies
These cookies are necessary for the website to function and cannot be switched off. They are usually only set in response to actions made by you which amount to a request for services, such as setting your privacy preferences, logging in or filling in forms.
Performance cookies
These cookies allow us to count visits and traffic sources so we can measure and improve the performance of our site. They help us understand how visitors move around the site and which pages are most frequently visited.
Functional cookies
These cookies are used to record your choices and settings, maintain your preferences over time and recognize you when you return to our website. These cookies help us to personalize our content for you and remember your preferences.
Targeting cookies
These cookies may be deployed to our site by our advertising partners to build a profile of your interest and provide you with content that is relevant to you, including showing you relevant ads on other websites.