Hi,
I implemented the scheduler in an Angular 6 application following the tutorial at https://dhtmlx.com/blog/angular-dhtmlxscheduler-tutorial/ and I am facing 2 major issues:
-
The import statement import {} from “@types/dhtmlxscheduler”; returns an error saying:
File ‘……/node_modules/@types/dhtmlxscheduler/index.d.ts’ is not a module.
I commented this part and the scheduler is rendered, however not sure whether this will impact some functionality which I have not implemented yet. -
The ng build process also returns an error:
ERROR in src/app/components/admin/scheduler/scheduler.component.ts(20,5): error TS2304: Cannot find name ‘scheduler’.
when scheduler is being used like so:
scheduler.config.xml_date = “%Y-%m-%d %H:%i”;
So is this scheduler for Angular ready or it is still a work in progress?