我p-calendar
在我的应用程序中使用在特定时间从用户那里获取输入。日历工作正常。但是,即使我单击日历上的其他日期,当前日期也会在日历中保持选中状态。因此,即使选择了新日期,看起来好像两者都被选中了。我怎样才能解决这个问题?在此先感谢您的帮助。
这是我的模板:
<div class="p-field p-col-12 p-md-4">
<p-calendar [defaultDate]="null" [showButtonBar]="true" [maxDate]="maxDateValue" [readonlyInput]="true" [(ngModel)]="date7" [showTime]="true" [inline]="true" inputId="time"></p-calendar>
</div>
<span style="font-size: small;"> Selcted Time::</span><span style="font-size: small;"><u>{{date7}}</u></span>
date7 中的值是新选择的日期,如预期的那样,但日历显示两个日期都已选择。