After going through the documentations, I have the following unsolved questions:
"Issues" is probably not the place to go for this post but sorry that I can't find a more fitting place.
Thanks a lot.
You need to use 'openDayEventsTemplate' input() property which will accept template reference as parameter.
Here is the code:
`
[openDayEventsTemplate]="openDayEventsTemplate">
The only way to do this is to copy the markup in your template and adapt as appropriate. You can use this as a starter:
<ng-template
#openDayEventsTemplate
let-events="events"
let-eventClicked="eventClicked">
<div
*ngFor="let event of events"
[ngClass]="event?.cssClass"
mwlDraggable
[dropData]="{event: event}"
[dragAxis]="{x: event.draggable, y: event.draggable}">
<span
class="cal-event"
[style.backgroundColor]="event.color.primary">
</span>
<mwl-calendar-event-title
[event]="event"
[customTemplate]="eventTitleTemplate"
view="month"
(mwlClick)="eventClicked.emit({event: event})">
</mwl-calendar-event-title>
<mwl-calendar-event-actions [event]="event"></mwl-calendar-event-actions>
</div>
</ng-template>
Most helpful comment
The only way to do this is to copy the markup in your template and adapt as appropriate. You can use this as a starter: