DialogType
The core of a Dialog is the type of Dialog you want to use. The options are CONFIRM, LIST, MULTI, NOTICE & LINK The default type is NOTICE
DialogAction
Most types have one or more DialogActions, which looks as shown below
action:
label: "<red>Action Label"
tooltip: "<red>Action Tooltip"
width: 150Notice Type
type: NOTICE
action:
...Confirmation Type
Contains two properties, yes & no, both which are DialogActions
type: CONFIRM
yesButton:
...
noButton:
...Dialog List Type
Contains a DialogAction property, exitAction.
It also contains buttonWidth, columns & dialogs properties
buttonWidth - The width of this button, between 1 -> 1024, defaults to 150 columns - The number of columns, must be 0 or above, defaults to 2 dialogs - A list of Dialog-IDs to display
Multi Action Type
exitAction - A DialogAction actions - A list of DialogActions columns - The number of columns, must be 0 or above, defaults to 2
Server Links Type
buttonWidth - The width of this button, between 1 -> 1024, defaults to 150 columns - The number of columns, must be 0 or above, defaults to 2 exitAction - A DialogAction
Last updated