-1
ローカルのカレンダーアプリでionic-native-calendarを使用してイベントを作成しようとしましたが、どのように 'allday'オプションを追加するのですか?イオンカレンダーのAlldayオプションのネイティブ
calendar.createEventWithOptions("Title","Location","Meeting",startdate,enddate,options)
ローカルのカレンダーアプリでionic-native-calendarを使用してイベントを作成しようとしましたが、どのように 'allday'オプションを追加するのですか?イオンカレンダーのAlldayオプションのネイティブ
calendar.createEventWithOptions("Title","Location","Meeting",startdate,enddate,options)
私は私の要件を満たすために終日のオプションを取得コルドバプラグインのカレンダーを使って答えを探します。
var calOptions = (<any>window).plugins.calendar.getCalendarOptions();
calOptions.allday = true;
(<any>window).plugins.calendar.createEventWithOptions("Hello","","Meeting",start,enddate,calOptions)