Open vikrambarnwal opened 1 year ago
I want to use two email editor in same component.
<div class="container"> <button (click)="exportHtml()">Export</button> <email-editor #editor1 (loaded)="editorLoaded($event)"></email-editor> </div> <div class="container"> <button (click)="exportHtml()">Export</button> <email-editor #editor2 (loaded)="editorLoaded($event)"></email-editor> </div>
@ViewChild(EmailEditorComponent) private emailEditor: EmailEditorComponent;
If i am trying viewchildren instead of viewchild ,issue as editor is not defined is coming in console.
can someone guide or help?
Thanks in advance.
I want to use two email editor in same component.
@ViewChild(EmailEditorComponent) private emailEditor: EmailEditorComponent;
If i am trying viewchildren instead of viewchild ,issue as editor is not defined is coming in console.
can someone guide or help?
Thanks in advance.