Is it possible to use the events keydown and paste for EJ2 richtexteditor?
Or is there another way to achieve these events for the richtexteditor?
Now I'm using a contenteditbale div with these events which prevent editing special mergefields:
<div contenteditable="true" applyformat="true" name="txt" #txt (keydown)="keydown($event)" (paste)="paste($event)"></div>
I tried to implement these events also in the richtexteditor, but it doesn't trigger the events:
<ejs-richtexteditor [(ngModel)]="txtValue" name="txt" #txt (keydown)="keydown($event)" (paste)="paste($event)"></ejs-richtexteditor>