2017-01-25 1 views

답변

0

가장 좋은 방법은 자신의 버튼을 만들 수 있습니다. 캘린더 @ViewChild ("calendar-id")의 ElementRef를 사용하여 수행 할 수 있습니다. *이 PrimeNG 일정 문서에서 함수가 어디

@ViewChild('calendar-id') calendar; 
ngAfterViewInit(): void { 
    this.calendar.*; 
} 

- Methods

0

다음과 같은 방법으로 전체 일정의 보류를 얻을 수 있습니다 :

@ViewChild('calendar-id') calendar; 
ngAfterViewInit(): void { 
    this.calendar.schedule.fullCalendar('<method>'); 
} 

가 PrimeNG 일정 개체의 schedule 멤버가

문서화되지 않습니다. 구현에서 발견했습니다.