streamlit-aggrid
streamlit-aggrid copied to clipboard
Infinite Scrolling No Longer Default
In the latest release 0.3.3. The default behavior of infinite scroll was removed. This is causing large dataframes to not be loaded.
Streamlit-aggrid always used Client-Side Row Model. Maybe it is because I updated the aggrid version? How big is you dataframe, I'll try to reproduce here.
We have a dataframe with about 10,000 rows.
@stevenatkin , you can set height=500
when calling the AgGrid function.
This param will bring back the normal scroll as version 0.3.2
That worked thanks so much.