Extends
Methods
choices() → {Array.<any>}
Get the choices.
- Since
- 5.4.0
- Type:
- Array.<any>
configurationElement() → {$k.Instance|undefined}
Get configuration element
- Since
- 5.2.0
- Inherited From
- Type:
- $k.
Instance |undefined
domainModel() → {$k.SemanticElement|$k.SemanticElementCollection|$k.HitCollection|undefined}
Get domain model
- Since
- 5.4.0
- Inherited From
- Type:
- $k.
SemanticElement |$k. SemanticElementCollection |$k. HitCollection |undefined
getPanelsToActivate() → {Array.<$k.SemanticElement>}
Get the panel configurations activated by the current action.
Only supported in the following application environment(s): View-Configuration-Mapper
- Since
- 5.3.2
- Inherited From
- Deprecated
- Use the corresponding function of the action
- Type:
- Array.<$k.SemanticElement>
getVariable(variable) → {any}
get the value of the given variable
Name | Type | Description |
---|---|---|
variable | string |
- Inherited From
(arrays of) SemanticElements and timestamps are auto-converted to native form
- Type:
- any
isRequired() → {boolean}
Get the required state of the input.
- Since
- 5.8.0
- Inherited From
True iff this is a required input field.
- Type:
- boolean
isValid() → {boolean}
Get the valid state of the input.
- Since
- 5.8.0
- Inherited From
True iff the user input has passed all validation checks.
- Type:
- boolean
panelView() → {$k.PanelView|undefined}
Get this view's panel view
- Since
- 5.4.0
- Inherited From
- Type:
- $k.
PanelView |undefined
parentView() → {$k.View|undefined}
Get this view's parent view
- Since
- 5.3.2
- Inherited From
- Type:
- $k.
View |undefined
renderContext() → {$k.JSONRenderContext}
Get render context
Only supported in the following application environment(s): View-Configuration-Mapper
- Since
- 5.0.0
- Inherited From
- Deprecated
- Direct access to the render context is deprecated. To store and recall state, either use the session or use .setVariable() and .getVariable() on this object.
- Type:
- $k.
JSONRenderContext
roles() → {Array.<string>}
Get the identifiers of any roles assigned to the view.
- Since
- 5.4.0
- Inherited From
Role identifiers
- Type:
- Array.<string>
semanticElement() → {$k.SemanticElement|undefined}
Get semantic element
- Since
- 5.2.0
- Inherited From
- Type:
- $k.
SemanticElement |undefined
session() → {$k.Session|undefined}
Get the current session
Only supported in the following application environment(s): View-Configuration-Mapper
- Since
- 5.2.0
- Inherited From
- Type:
- $k.
Session |undefined
setState(state) → {object}
Set the state of the view
Name | Type | Description |
---|---|---|
state | object |
- Version
- Experimental feature, might be removed at any time
- Since
- 5.4.0
- Inherited From
- Type:
- object
setValidationErrorMessage(validationMessage)
Set a validation error message.
Only supported in the following application environment(s): View-Configuration-Mapper
Name | Type | Description |
---|---|---|
validationMessage | string | A string justifying why this value is not acceptable that will be shown to the user. |
- Since
- 5.8.0
- Inherited From
setValue(value)
Set the value.
Only supported in the following application environment(s): View-Configuration-Mapper
Name | Type | Description |
---|---|---|
value | any | The value to set. It might be coerced to a type matching the form entry. |
- Since
- 5.4.0
- Inherited From
setVariable(variable, value)
set the value of the given variable
Name | Type | Description |
---|---|---|
variable | string | |
value | any | supported variable types include all javascript base types as well as: timestamp, SemanticElement and arrays of the latter |
- Inherited From
state() → {object}
Get the state of the view - varies according to view type and implementation
- Version
- Experimental feature, might be removed at any time
- Since
- 5.4.0
- Inherited From
- Type:
- object
subViews() → {Array.<$k.View>}
Get this view's sub-views or an empty array if there are none
- Since
- 5.4.0
- Inherited From
- Type:
- Array.<$k.View>
value() → {any}
Get the value.
Only supported in the following application environment(s): View-Configuration-Mapper
- Since
- 5.4.0
- Overrides
- Type:
- any
viewsWithRole(role) → {Array.<$k.View>}
Get all views with the given role searching from this view down to all sub-views.
Name | Type | Description |
---|---|---|
role | string | Role identifier |
- Since
- 5.4.0
- Inherited From
- Type:
- Array.<$k.View>
viewType() → {string}
Get the view type
- Since
- 5.4.0
- Inherited From
the view type: edit, query, etc.
- Type:
- string
viewWithRole(role) → {$k.View|undefined}
Get the single view with the given role searching from this view down to all sub-views. If there are multiple views with that role, undefined is returned.
Name | Type | Description |
---|---|---|
role | string | Role identifier |
- Since
- 5.8.2
- Inherited From
The view with the given role or undefined if there are zero or more than one matching views.
- Type:
- $k.
View |undefined