DialogContentBase
Directive
Serves as the base class for a component provided as Dialog content through the content property.
(See example).
Definition
Package:@progress/kendo-angular-dialog
Syntax:
ts
@Component({ ... })
export class UserInfoComponent extends DialogContentBase {
constructor(public dialog: DialogRef) {
super(dialog);
}
}