のイオン日時のCSSスタイル私のイオン-2アプリでstartDate
とendDate
ピッカーを持っている:イオン2 - オープン/クローズ
<ion-row>
<ion-col width-50>
<ion-item class="eventCal-datePicker active">
<ion-label>From</ion-label>
<ion-datetime #startdatepicker displayFormat="DD/MM/YYYY" (ngModelChange)="startDateChange($event)" [(ngModel)]="startDate"></ion-datetime>
</ion-item>
</ion-col>
<ion-col width-50>
<ion-item class="eventCal-datePicker">
<ion-label>To</ion-label>
<ion-datetime #enddatepicker displayFormat="DD/MM/YYYY" (ngModelChange)="endDateChange($event)" [(ngModel)]="endDate"></ion-datetime>
</ion-item>
</ion-col>
</ion-row>
私は、次のロジックを適用したい:
- 新しい日付がstartDateに割り当てられると、endDateが起動されます。アクティブ
ion-datetime
ピッカーの - ホルダー(
ion-item
は)私はこのコードを使用して他のピッカーを開くために管理
適切active
CSSクラスを持っている必要があります:私はやって管理していない何
startDateChange(val) {
this.startDate = val;
//check whether startDate > endDate and asssign later date in case it is
//fire endDate picker
setTimeout(() => this.endDatePicker.open(), 0);
}
は、ピッカーが起動され、閉じられたときに、cssクラスion-item
を変更することです。私はion-datetime
要素も持っていることに気づいた.TS
はい、しかし、イオンアイデンティティのオープン/クローズにバインドする方法はありますか? – guyaloni