au-widget-finish-group/IAuWidgetFinishGroupConfig
Interfaces
IAuWidgetFinishGroupConfig
Properties
buttonClassStyle
buttonClassStyle: string;
The button style. The following styles are available: primary, success, warning, and danger.
buttonText
buttonText: string;
The button caption.
buttonVisible?
optional buttonVisible?: boolean;
If true, displays the button.
checkboxEnabled?
optional checkboxEnabled?: boolean;
If true, enable the checkbox.
checkboxPrompt
checkboxPrompt: string;
A text message associated with the checkbox.
checkboxVisible?
optional checkboxVisible?: boolean;
If true, displays the checkbox.
downloadEnable
downloadEnable: boolean;
Enables the Download button.
downloadPosition
downloadPosition: DownloadPosition;
The position of the Download button, either left or right.
downloads
downloads: Function[] | DownloadingModel[];
URLs for downloading.
if this if Function[], the latest function should return array of objects:
[{url: string, filename: string, newTab: boolean = false}]
downloadText
downloadText: string;
The caption of the Download button.
downloadVisible
downloadVisible: boolean;
Displays the Download button.
onClick
onClick: Function | Function[];
A single function or an array of functions that will be executed when the button is clicked.
value
value: boolean;
This value is true if the checkbox is selected.
Type Aliases
DownloadPosition
type DownloadPosition = "left" | "right";