Is it possible to have the one column change based on a change in the value of another column without ‘reloading’ the table/app? Or do we need to use a third party component and java script?
For example, I am currently defininig a function to be called on_change, this requires the table to be reloaded. Can this be done smoothly? E.G. below
def editor():
if "df_cols" not in st.session_state:
st.session_state\["df_cols"\] = df_cols
st.data_editor(st.session_state\["df_cols"\], column_config=col_config, key = "df_editor",on_change=df_on_change)
editor()