4

I am using the ag-dark theme for ag-grid in react typescript.

Using floating filters is ok as they are all built into the grid, however when I click on the filter icon next to each column, it opens the popup showing the options for selecting the filter, however only the popup shows, the actual grid behind it vanishes, as if I have set div display to none. So the popup is just floating on an empty background.

When I close the popup, the grid returns.

Why might this be happening?

NZJames
  • 4,963
  • 15
  • 50
  • 100

1 Answers1

0

I had the same issue, I found that the ag-popup layer covered the whole grid. This CSS fixed the issue for me:

.ag-theme-balham.ag-popup {
  position: absolute;
}
Nac
  • 1
  • 1