Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

203
Views
Angular Syncfusion schedule cannot invoke an object which is possibly 'undefined

I am working on Angular Syncfusion for allowing user to show and book appoinments and following below link https://ej2.syncfusion.com/angular/documentation/schedule/editor-template/#how-to-prevent-the-display-of-editor-and-quick-popups

Below is my code.

<ejs-schedule #scheduleObj   class="schedule" cssClass='schedule-group-custom-work-days' width='100%' height='650px'
[selectedDate]="selectedDate" [workDays]='workWeekDays' (popupOpen)='onPopupOpen($event)' [eventSettings]='eventSettings' showQuickInfo]='showQuickInfo'
[allowResizing]=true ></ejs-schedule>
  @ViewChild('scheduleObj')
  public scheduleObj!: ScheduleComponent;
  public eventSettings: EventSettingsModel = { dataSource: [] };
  selectedTileDate: any;
  public selectedDate: Date = new Date();
  public showQuickInfo: Boolean = window.innerWidth > 1024 ? false : true;


 public onPopupOpen(args: PopupOpenEventArgs): void {
}

But I am getting error Cannot invoke an object which is possibly 'undefined'. I am able to resolve this error by doing below in tsconfig.json

"angularCompilerOptions": {
   ...,
   "strictTemplates": false
}

But then it is disabling the strict check in my whole application. Is there a better way to deal with it?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

We have validated your reported issue and suggest you set “strictNullChecks” to false in the “complierOptions” in the tsconfig.json file like below to overcome the issue.

tsconfig.json

"compilerOptions": {

    .

    .

    .

    .

    .

"strictNullChecks": false,

}

Kindly try the above solution and let us know if you need any assistance.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!