user11131412
user11131412

Reputation: 11

react-datepicker is not showing properly when i use it with ag-grid-react

Added react-datepicker to the cell in ag-grid-react. I can only see the tip of the datepicker.The rest of the datepicker is covered behind next row. The next row overlaps the datepicker. Can someone please help with css class here.

Upvotes: 1

Views: 1066

Answers (1)

user3469197
user3469197

Reputation: 1

Here is the solution that worked for me -

.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;
}

Upvotes: 2

Related Questions