-
-
-
Constructor Summary
Constructors
-
Method Summary
Add parameter to the ContextParameters list
Example:
Specifies whether the collapse element in the UI will be shown closed (collapsed).
addOrUpdateInput, addToConfiguratorEntry, addToConfiguratorEntry, buildContextParameter, buildMap, getInput, self, setAccessCode, setAlign, setAllValueTypesTracking, setAlwaysEditable, setAppearance, setAutoComplete, setAutoFocus, setCaption, setConfigValues, setCustomAttributeName, setCustomAttributeValue, setDefaultValueTracking, setDefaultWidth, setDisabled, setDisplayMode, setErrorMessage, setExportable, setFirstRunTracking, setFlex, setHelpLink, setHelpText, setIcon, setIconPosition, setImportable, setLabel, setLabelPlacement, setLabelStyle, setLabelTranslations, setLayoutGridName, setNoRefresh, setParameterGroup, setPlaceholderText, setPreviousValueTracking, setReadOnly, setRequired, setShowInline, setSize, setSuccessMessage, setTheme, setTitle, setTrackedValue, setUserGroupEdit, setUserGroupEdit, setUserGroupView, setValue, setValueChangeTracking, setValueHint, setWarningMessage, setWidth
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Details
-
-
addInput
Add parameter to the ContextParameters list
Example:
ContextParameter entry = ...
api.inputBuilderFactory()
.createCollapseLayout("Collapsed")
.addInput(entry)
.setCollapsed(true)
.buildContextParameter()
- Parameters:
contextParameter
- ContextParameter to be added
- Returns:
- self
-
setCollapsed
Specifies whether the collapse element in the UI will be shown closed (collapsed). If omitted, the collapse
element will be shown opened.
Example:
ContextParameter entry = ...
api.inputBuilderFactory()
.createCollapseLayout("Collapsed")
.addInput(entry)
.setCollapsed(true)
.buildContextParameter()
- Parameters:
isCollapsed
- true to make the collapse element to be displayed as closed, false to show it opened
- Returns:
- the CollapseInputBuilder instance