1
我想在primeNG中使用日曆 - 範圍和多個選項,但不起作用。我只能從日曆中選擇一個日期。日曆中的多項選擇不起作用 - primeNG
<div class="box-body">
<div class="row">
<div class="col-md-12">
<p-calendar maxDateCount="2" placeholder="Choose days" [(ngModel)]="dates" selectionMode="multiple" readonlyInput="true"></p-calendar>
</div>
<div class="col-md-12">
<p-calendar placeholder="Choose range of date" [(ngModel)]="rangeDates" selectionMode="range" readonlyInput="true" ></p-calendar>
</div>
</div>
</div>
Component.ts
import { MultiSelectModule, CalendarModule} from 'primeng/primeng';
import { Component } from '@angular/core';
export class CalendarDemo {
dates: Date[];
rangeDates: Date[];
}
**選中要你之前應用標籤應用它們**你在它們中有錯誤 – Kukeltje
你爲什麼要在一個組件中導入模塊? – emp
我在「module.ts」文件中導入。以上我誤解了。 – Italik