hello,
i am building a chatbot that depends on buttons and i want to remove the default “Press Enter to apply” default behavior of Streamlit’s text input widget.
my code is:
query = st.text_input(“Enter a question and get an answer:”)
thanks
hello,
i am building a chatbot that depends on buttons and i want to remove the default “Press Enter to apply” default behavior of Streamlit’s text input widget.
my code is:
query = st.text_input(“Enter a question and get an answer:”)
thanks
Hey @AhmedEwis,
Thanks for sharing this question!
I assume you’re looking to add a button that would submit the text input rather than having the user just hit “Enter.” Is there a reason that the following wouldn’t work for this use case?
with st.form("my-form"):
query = st.text_input("Enter a question and get an answer:")
submit_button = st.form_submit_button("Submit question")
even after using forms its not working, any other alternative solution?
Since this solution was posted, forms have been updated to also submit with Enter so it’s no longer a work around. I’m not sure of a way to disable the functionality, but you may want to check GitHub and create a feature request for this.
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.
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.
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.
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.
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.