向ag-grid-react中的单元格添加react-datepicker。我只能看到datepicker.The的提示,datepicker的其余部分被覆盖在下一行后面。下一行与datepicker重叠。有没有人可以在这里帮助一下css类。
发布于 2019-04-29 19:19:56
这是一个对我有效的解决方案-
.ag-cell {
overflow: visible !important;
}
.ag-row-focus {
z-index: 1;
}
.ag-center-cols-viewport,
.ag-center-cols-clipper,
.ag-layout-normal {
overflow: visible !important;
}https://stackoverflow.com/questions/54928864
复制相似问题