If I set initial value and then overide that value with a button click. An undo action does not become present how could I programmatically set value of rich text editor and after each setting have it saved as a step for undoing?
<ejs-richtexteditor
#toolsRTE
id="alltoolRTE"
[showCharCount]="true"
[quickToolbarSettings]="quickToolbarSettings"
(toolbarClick)="toolbarClick($event)"
[toolbarSettings]="tools"
[(value)]="richtextData"
>
</ejs-richtexteditor>
public submitClick = (): void => {
this.richtextData="asd"
};