FormDialogSettings
Configures the external editing Dialog.
const dialogSettings: FormDialogSettings = {
title: 'Edit Item',
width: 400,
themeColor: 'primary'
};
Name | Type | Default | Description |
---|---|---|---|
actionsLayout? |
|
Sets the layout of the action buttons in the Dialog. | |
animation? |
|
Configures the Dialog opening animation (see example). By default, the animation type is | |
appendTo? |
|
Defines the container for the Dialog. Setting this option changes where the Dialog appears in the page hierarchy. The Dialog styling stays the same. | |
closeTitle? |
|
Sets the title of the close button. | |
cssClass? |
|
Sets the CSS classes for the Dialog wrapper element. Supports the union type of values that | |
height? |
|
Sets the height of the Dialog. A number sets the height in pixels. A string sets the height in arbitrary units, for example, | |
htmlAttributes? |
|
Sets the HTML attributes of the Dialog wrapper element. Accepts string key-value pairs. | |
maxHeight? |
|
Sets the maximum height of the Dialog. A number sets the maximum height in pixels. A string sets the maximum height in arbitrary units, for example, | |
maxWidth? |
|
Sets the maximum width of the Dialog. A number sets the maximum width in pixels. A string sets the maximum width in arbitrary units, for example, | |
minHeight? |
|
Sets the minimum height of the Dialog. A number sets the minimum height in pixels. A string sets the minimum height in arbitrary units, for example, | |
minWidth? |
|
Sets the minimum width of the Dialog. A number sets the minimum width in pixels. A string sets the minimum width in arbitrary units, for example, | |
themeColor? |
|
Sets the theme color of the Dialog. | |
title? |
|
Sets the title of the Dialog. If the title is omitted, the Dialog does not render a Close button. | |
width? |
|
Sets the width of the Dialog. A number sets the width in pixels. A string sets the width in arbitrary units, for example, |