You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is the height clipping problem which is known for quite some time.
When only quicksearch filter is enabled there is a workaround:
You just use a custom CSS like this:
custom_css={
"#gridToolBar": {
"padding-bottom": "30px !important",
}
}
But when both pagination and quicksearch is needed nothing seems to mitigate the issue.
I tried combinations of custom css for gridToolBar and/or ag-root.ag-unselectable, ag-layout-normal divs with no success.
In the streamlit discussion board someone mentions that the following has worked for him but it does not seem to do the trick for the latest version:
custom_css={
"#gridToolBar": {
"padding-bottom": "30px !important"
},
"div.ag-root.ag-unselectable.ag-layout-normal": {
"height": "750px !important"
}
}
The text was updated successfully, but these errors were encountered:
There is the height clipping problem which is known for quite some time.
When only quicksearch filter is enabled there is a workaround:
You just use a custom CSS like this:
custom_css={
"#gridToolBar": {
"padding-bottom": "30px !important",
}
}
But when both pagination and quicksearch is needed nothing seems to mitigate the issue.
I tried combinations of custom css for gridToolBar and/or ag-root.ag-unselectable, ag-layout-normal divs with no success.
In the streamlit discussion board someone mentions that the following has worked for him but it does not seem to do the trick for the latest version:
custom_css={
"#gridToolBar": {
"padding-bottom": "30px !important"
},
"div.ag-root.ag-unselectable.ag-layout-normal": {
"height": "750px !important"
}
}
The text was updated successfully, but these errors were encountered: