How to modify event templates on the scheduler?

is there the possibility to modify the graphic templates of the new webix scheduler, as happened for the previous version deprecated with webix 8 (DHTMLX )?

Hello @Andrea_Poli!

Unlike in the old Scheduler, there are no globally available templates and you have to look at the source code if you want to change something.
Now customization is done according to the same scheme, regardless of whether it is drawing or another part of the logic - the possibilities are much wider, and therefore there are no special rules.

In the new Scheduler in the class of almost every view there is some method that returns HTML events for rendering. They differ because in the modes a calendar is built differently (on which events must be placed), for example:

  • for the day view it’s simple - toHTML() (here’s an example: Code Snippet)

  • week view inherits the entire DayEventsView, there’s no its own template

  • in the month view, the template is formed in toHTML()