In my ngprime table, the header row contains a column field with a popover set to display at the top. However, it is covering the actual field instead of appearing above it. This issue arises because the popover cannot display outside of its parent div, causing it to ignore the specified placement.
<th class ="popover_enabled text-center" [popover]="customPopup" container="body" placement="top">FieldName</th>
I have attempted to address this problem by adjusting the CSS styling:
.popover-content.popover-body{
margin-top-30px;
}
While this solution works, it has unintended effects on other popovers due to them being generated elements. I have also tried setting the overflow property to visible in the parent div without success. Any suggestions for resolving this issue would be greatly appreciated, as I am currently stuck on how to proceed.