I am using primeng p-calender I have the requirement that not to send past dates to the API,
So I want to disable past dates selection
If anyone knows please, comment
Thanks in advance
I am using primeng p-calender I have the requirement that not to send past dates to the API,
So I want to disable past dates selection
If anyone knows please, comment
Thanks in advance
Documentation ref: https://www.primefaces.org/primeng/#/calendar
in your .html
<p-calendar [(ngModel)]="dateValue" [minDate]="yesterday " [readonlyInput]="true"></p-calendar>
via ts