PablocFonseca / streamlit-aggrid

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

Pagination issue with 0.3.4-3 #210

Open upasana-mittal opened 1 year ago

upasana-mittal commented 1 year ago

Pagination is not working with above version

SiftingSands commented 1 year ago

Another observation in case it's helpful for debugging

Setting to height to None, as mentioned in https://github.com/PablocFonseca/streamlit-aggrid/issues/199#issuecomment-1456743350, allows for pagination but the table is useless w/ zero rows displayed.

casualcomputer commented 1 year ago

Same issue: "Pagination is not working with above version"

I used streamlit-aggrid==0.3.1 to enable pagination.

mzeidhassan commented 1 year ago

Same thing here!

ctg123 commented 1 year ago

Any updates on this issue? I can also confirm the pagination feature disappears with 0.3.4-3 but works with 0.3.3.

andrewssobral commented 1 year ago

I'm also having the same problem with 0.3.4.post3

pmat-st commented 1 year ago

same here (0.3.4.post3)

simonfromla commented 1 year ago

It is a css issue. Set custom_css={"#gridToolBar": {"padding-bottom": "0px !important"}} when building AgGrid()

syatagan commented 10 months ago

It is a css issue. Set custom_css={"#gridToolBar": {"padding-bottom": "0px !important"}} when building AgGrid()

this is a good and beneficial reply, thank you very much

andrewssobral commented 9 months ago

It is a css issue. Set custom_css={"#gridToolBar": {"padding-bottom": "0px !important"}} when building AgGrid()

I confirm this solved the issue.

@PablocFonseca