Hi Jose,
Syncfusion Greetings.
With your shared code, we checked your reported issue in which you erroneously defined the context menu within the schedule tag, which is the cause. You need to define the context menu outside of the schedule tag to overcome this. Refer to sample below.
<ejs-schedule #scheduleObj height='650px' [selectedDate]="selectedDate" [allowResizing]="allowResizing"
[allowDragAndDrop]="allowDragDrop" [eventSettings]="eventSettings">
<ng-template width="1000px" #editorTemplate>
<div class="tclass">
<table class="custom-event-editor" width="100%" cellpadding="5">
<tbody>
<tr>
<td class="e-textlabel">Description</td>
<td colspan="3">
<input id="description" name="description" class="e-field e-input" type="text" style="width: 100%" />
</td>
</tr>
</tbody>
</table>
</div>
</ng-template>
</ejs-schedule>
<ejs-contextmenu #menuObj cssClass='schedule-context-menu' target='.e-schedule' [items]='menuItems'
(beforeOpen)='onContextMenuBeforeOpen($event)' (select)='onMenuItemSelect($event)'>
</ejs-contextmenu>
Regards,
M.Vinitha devi