I have used Primeng p-table with filter and frozen column feature (one column is freezed rest are movable). In the header I am giving select dropdown as a filter control. When I am opening the dropdown, the values are getting hidden as shown in the pic.
Since the table header is scrollable its having property overflow:hidden. So when I am removing this, the dropdown values gets visible but the table header doesn't hide as shown below.
overflow-x: auto
? – Victor Henriqueoverflow-x: auto
also on the table header whereoverflow:hidden
is being applied. – tariqzak