Jumping Issue with st.data_editor

@st.fragment(run_every='2s')
def user_update_main():
    user_df = fetch_user_data(st.session_state.acc_id)
    print(user_df)

    # st.write(user_df)
    st.data_editor(user_df)

When using st.write after fetching data, it updates smoothly without jumping. However, when using st.data_editor, it jumps when new values or rows are added. How can I fix this?"

Would you like suggestions on how to solve the jumping issue with st.data_editor?

1 Like

i have been facing this same issue too

and i have tried with st.dataframe()

without select options it is updating smoothly,
when i use select option it is jumping
on_select="rerun", selection_mode=["multi-row"]

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.