Dialog
API reference for Material Extensions Dialog
import { MtxDialogModule } from '@ng-matero/extensions/dialog';
Services
MtxDialog
MtxDialog
Methods
alert
Parameter
Description
title: string \| Observable<string>
The dialog title.
description: string \| Observable<string>
The dialog description. Defaulted to ''
onOk: () => void
The ok callback function. Defaulted to () => {}
confirm
Parameter
Description
title: string \| Observable<string>
The dialog title.
description: string \| Observable<string>
The dialog description. Defaulted to ''
onOk: () => void
The ok callback function. Defaulted to () => {}
onClose: () => void
The close callback function. Defaulted to () => {}
open
Parameter
Description
config: MtxDialogData
The dialog description.
componentOrTemplateRef: ComponentType<T>
The component to load into the dialog. Defaulted to MtxDialogComponent
originalOpen
Parameter
Description
componentOrTemplateRef: ComponentType<T>
The component to load into the dialog. Defaulted to MtxDialogComponent
config?: MatDialogConfig<D>
The dialog description.
Interfaces
Dialog Data
Dialog Button
Last updated
Was this helpful?