0
剣道のdatepickerは動作しません。誰かが私が間違っていた場所を教えてもらえますか?最小の日付は、今日の日付とします。ここではサンプルコードです: app.html角2 - 剣道の日付ピッカー最大と最小は動作しません
<div [class]="datePickerClass">
<kendo-datepicker class="kendo-datepicker"
id="startDate"
[ngModel]="_startValue"
[min]="min"
[max]="max"
(ngModelChange)="startValueChanged($event)"
[format]="formatDisplay"></kendo-datepicker>
</div>
<div [class]="datePickerClass">
<kendo-datepicker class="kendo-datepicker"
id="endDate"
[ngModel]="_endValue"
[min]="min"
[max]="max"
(ngModelChange)="endValueChanged($event)"
[format]="'d MMM yyyy'"></kendo-datepicker>
</div>
<ng-content>
</ng-content>
app.ts
public min = new Date();
public max: Date = new Date(2017, 1, 1);
おかげで男を。それは今働いている。あなたの時間を感謝:) –