Please how to prevent this select box from refreshing an entire page when selected.
add_selectbox = st.selectbox(
'How would you like to be contacted?',
('Email', 'Home phone', 'Mobile phone')
)
Please how to prevent this select box from refreshing an entire page when selected.
add_selectbox = st.selectbox(
'How would you like to be contacted?',
('Email', 'Home phone', 'Mobile phone')
)
Wrap your widget,etc. in a function and decorate the function with a fragment. To make the selection accessible in other parts of the app for the entire session, save that in a session state variable.
Here is an example.
import streamlit as st
from streamlit import session_state as ss
st.set_page_config(layout='centered')
if 'contact' not in ss:
ss.contact = None
@st.experimental_fragment
def my_selectbox():
add_selectbox = st.selectbox(
'How would you like to be contacted?',
('Email', 'Home phone', 'Mobile phone')
)
ss.contact = add_selectbox
st.write(f'contact: {ss.contact}')
my_selectbox()
Thanks alot
This topic was automatically closed 2 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.