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
By changing the "overflow-y" value of "inner-scroll" from "visible" to "hidden" in the browser's developer mode, I was able to eliminate the duplication of vertical scrolling.
Hallo,
When resizing the window, gmd-table may show two vertical scrollbars.
https://gwtmaterialdesign.github.io/gmd-table-demo/#customized
By changing the "overflow-y" value of "inner-scroll" from "visible" to "hidden" in the browser's developer mode, I was able to eliminate the duplication of vertical scrolling.
gwt-material-table-2.5.0.jar/gwt\material/design/client/resources/css/style.css
.inner-scroll {
overflow-x: hidden;
overflow-y: visible;
}
The text was updated successfully, but these errors were encountered: