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
)
}
)
On This Page