Type Definitions
CheckboxInfo
Type:
Properties:
| Name | Type | Description |
|---|---|---|
label |
string | Label for the checkbox |
value |
string | Value of the checkbox |
tooltip |
string | Tooltip on the checkbox label |
checked |
boolean | Whether the checkbox is checked by default |
PromiseResultObject
Type:
Properties:
| Name | Type | Description |
|---|---|---|
response |
string | true | |
checked |
boolean |
ResultPromise
Resolves to false (if cancelled), for prompts and selects
without checkboxes, it resolves to the value of the form control. For other
types without checkboxes, it resolves to true. For checkboxes, it resolves
to an object with the response key containing the same value as the previous
mentioned (string or true) and a checked (boolean) property.
Type:
- Promise.<(boolean|string|module:jQueryPluginDBox.PromiseResultObject)>
SelectChangeListener() → {void}
Triggered upon a change of value for the select pull-down.
Returns:
- Type
- void
SelectOption
Type:
Properties:
| Name | Type | Description |
|---|---|---|
text |
string | |
value |
string |