Cabrillo JS data types
These are common data types used by Cabrillo JS APIs.
Cabrillo.Attachment
Defines an attachment.
| Name | Type | Description |
|---|---|---|
| content_type | String | The attachment content type. |
| ext | String | The attachment file extension. |
| file_name | String | The full file name of the attachment including the extension. |
| sys_created_by | String | The user name of the user that created the attachment. |
| sys_id | String | The attachment record sys_id. |
| sys_updated_on | String | The date the attachment record was updated. |
| table_name | String | Name of the table containing the record to which the attachment is attached. |
| table_sys_id | String | The sys_id of the record that to which the attachment is attached. |
| thumbnail | String | The URL for the image thumbnail of the attachment. Only applies to image attachments. |
Cabrillo.AttachmentOptions
Defines attachment options.
| Name | Type | Description |
|---|---|---|
| isSingleSelection | Boolean | Optional. Flag that indicates whether the document picker for uploading files allows multi-selection. Valid values:
Default: False |
Cabrillo.Button
Defines a button. Different interface contexts may support a subset of a button's properties.
| Name | Type | Description |
|---|---|---|
| backgroundColor | String | Background color of the button or badge. A string containing hex, RGB, HSL, or an x11-named color. 주: The color can't be set for buttons in the navigation bar. The color can be set for bottom buttons. |
| badgeCount | Number | Number value to display on the button's badge. |
| buttonId | String | Required. Unique id for the button. This value is returned in the button action payload to indicate which button the user tapped. |
| buttonStyle | String | Used to customize the style of the button. |
| enabled | Boolean | Indicates whether the button is enabled. |
| imageName | String | Specifies an image. Possible values are:
|
| textColor | String | The text color of the badge or button. A string containing hex, RGB, HSL, or an x11-named color. 주: The color can't be set for buttons in the navigation bar. The color can be set for bottom buttons. |
| title | String | Title of the button. The string should be localized. |
Cabrillo.ModalResponse
Contains the result passed from a modal window that was dismissed.
| Name | Type | Description |
|---|---|---|
| results | Object | The result from the dismissed modal window. |
Cabrillo.NavigationRequest
Specifies a request to navigate to a list or record.
Cabrillo.Rect
Contains the location and dimensions of a rectangle.
| Name | Type | Description |
|---|---|---|
| x | Number | The x origin of the rectangle. |
| y | Number | The y origin of the rectangle. |
| width | Number | The width in points. |
| height | Number | The height in points. |
Cabrillo.Spinner
Defines a spinner.
| Name | Type | Description |
|---|---|---|
| mask | Boolean | Optional. Determines whether to display a mask behind the spinner. Valid values:
Default: false |
| maskColor | String | Color of the mask, if enabled. |