BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Is it possible to pass an ng-template component as content using the Dialog Angular service? For example, can I replicate the following dialog component example using the service?<ejs-dialog id="editDlg" #editDlg[visible]='hidden'[isModal]='isModal'[animationSettings]='animationSettings'[showCloseIcon]='showCloseIcon'[header]='header'(open)="dialogOpen()"(close)="dialogClose()"[width]='width'><ng-template #content><app-edit-form *ngIf="modalContentSelect == 'edit'" [dataSource]="dataSource"></app-edit-form><app-create-form *ngIf="modalContentSelect == 'create'"></app-create-form></ng-template></ejs-dialog>