答案 0 :(得分:1)
我通过使用appendTo =" body"来修复它。在p-calendar html元素中。
以下是html元素的现状:
<p-calendar appendTo="body" [locale]="dk" placeholder="Inklusion dato" [(ngModel)]="patient.inclusionDate" showButtonBar="true"
readonlyInput="true" [showIcon]="true"></p-calendar>
答案 1 :(得分:0)
对我来说效果很好。只需添加
的内联CSS<p-calendar [(ngModel)]="dateTo" [disabledDays]="[0,6]" (onSelect)="doOnSelect($event)" [showIcon]="true" [style]="{'overflow': 'visible', 'z-index': '9999','opacity':'1'}"></p-calendar>
仅内联而不是在style.css中工作。