this code displays a modal popup button when form is submitted.
i want to write or display the resultant name value inside the modal
here is my issue when i click on modal popup, the page got refreshed. please how do i stop the page from refreshing when modal is clicked. or what about caching the name values. can someone help me out. below is my code.
import streamlit as st
from streamlit_modal import Modal
import streamlit.components.v1 as components
st.write("# Welcome to Streamlit! ")
def process_data():
st.info(name)
if name:
# This will never be executed.
st.success(f'Data Successful.... {name}')
modal = Modal(
"Demo Modal",
key="demo-modal",
# Optional
padding=20, # default value
max_width=744 # default value
)
open_modal = st.button("Open")
if open_modal:
modal.open()
if modal.is_open():
with modal.container():
# display name result
st.success(f'Data Successful.... {name}')
name = st.text_input('Name')
st.button('Submit data', on_click=process_data)