Hi Chris,
Greetings from Syncfusion support.
We have validated your query “Is there a way to make the [(value)] binding happen immediately when typing?”
By default, in the Rich Text Editor, the value will be bound after 10 seconds delay, this can be modified by using the `saveInterval` property. We have prepared a sample for your reference,
Code Snippet:
|
<ejs-richtexteditor #templateRTE id="name" #name="ngModel" [(value)]="value" required name="name"
[saveInterval]="saveInterval" [(ngModel)]="value" (created)="rteCreated()"></ejs-richtexteditor> |
|
export class AppComponent {
public value: any = null;
@ViewChild('templateRTE') rteEle: RichTextEditorComponent;
public saveInterval: number = 100;
. . .
} |
Note: The default value of `saveInterval` is 1000 milliseconds (10 seconds).
Regards,
Revanth