This page contains information related to an old version of the Document Browser Component.
To take advantage of the latest features and improvements, we always recommend you use the latest version whenever possible. See the latest version's page for information about what's been changed.
Function: a!documentBrowserFieldColumns_17r3()
Displays the contents of a folder and allows users to navigate through a series of folders to find and download documents.
Parameters
Name | Keyword | Type | Description |
---|---|---|---|
Label | label | Text | Optional text to display as the field label. |
Label Position | labelPosition | Text | Optional text to determine where the label appears. Valid values include
|
Instructions | instructions | Text | Use this parameter to supply supplemental text about this field. |
Help Tooltip | helpTooltip | Text | Displays a help icon with the specified text as a tooltip. The tooltip displays a maximum of 500 characters. The help icon does not show when the label position is "COLLAPSED" . |
Folder | folder | Folder | The contents of the selected folder are displayed in the document browser. |
Height | height | Text | Determines the height of the component. Valid values are SHORT , MEDIUM (default), and TALL . |
Knowledge Center | knowledgeCenter | Knowledge Center | The contents of the selected knowledge center are displayed in the document browser. |
Visibility | showWhen | Boolean | Determines whether the component is displayed on the interface. When set to false, the component is hidden and is not evaluated. Default: true. |
Notes
Examples
Copy and paste an example into the INTERFACE DEFINITION in EXPRESSION MODE to see it displayed.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
=a!localVariables(
local!folder,
{
a!pickerFieldFolders(
label: "Select a Folder",
maxSelections: 1,
value: local!folder,
saveInto: local!folder
),
a!documentBrowserFieldColumns_17r3(
label: "Document Browser",
folder: local!folder
)
}
)
Feature | Compatibility | Note |
---|---|---|
Portals | Incompatible | |
Offline Mobile | Incompatible | |
Sync-Time Custom Record Fields | Incompatible | |
Real-Time Custom Record Fields | Incompatible | Custom record fields that evaluate in real time must be configured using one or more Custom Field functions. |
Process Reports | Incompatible | Cannot be used to configure a process report. |
Process Events | Incompatible | Cannot be used to configure a process event node, such as a start event or timer event. |
a!documentBrowserFieldColumns_17r3