PablocFonseca / streamlit-aggrid

Implementation of Ag-Grid component for Streamlit
https://pypi.org/project/streamlit-aggrid/
MIT License
1.06k stars 202 forks source link

about page reloading automatically #120

Closed a00101 closed 2 years ago

a00101 commented 2 years ago

Thank you for developing nice tool.

I got large tables (56K x 4) in the context in my page. Whenever I got click in the table such as ascent, descend, or select item, whole page is reloaded automatically.

What should I do to stop reloading while I'm in the table manipulation.

Thank you in advance.

GGA-PERSO commented 2 years ago

@a00101

from st_aggrid import GridUpdateMode

AGGRID( ..., update_mode=GridUpdateMode.NO_UPDATE
)

??

a00101 commented 2 years ago

@Hurikaine Thank you, it works well.