https://i.sstatic.net/QaRiq.png
I am encountering an issue with my ng prime dialog box. I tried to add the ng-pick date picker on it, but when I click on the date picker it hides behind the dialog box. Can someone please help me with this problem? Below is a snippet of my code:
<p-dialog [contentStyle]="{'max-height':'190px' ,'max-width':'500px','width':'100%','height':'auto'}" header="Filter Columns" styleClass="quick-view-grid-row filterbox " [(visible)]="displayFilter"
appendTo="body" showEffect="fade" [modal]="true">
<div *ngIf="filterRow.datatype==='DateRange'">
<input [(ngModel)]="filterRow.values" [owlDateTimeTrigger]="dt5" [owlDateTime]="dt5">
<owl-date-time #dt5></owl-date-time>
</div>
</p-dialog>