Usage
Signature:
interface CSelectorAllElement<K extends string | number>
Generic Parameters
Parameter Description K Type of key
Typescript Import Format
//To typecheck the element APIs, import as below.
import { CSelectorAllElement } from "oj-c/selector-all";
//For the transpiled javascript to load the element's module, import as below
import "oj-c/selector-all";
For additional information visit:
Note: Application logic should not interact with the component's properties or invoke its methods until the BusyContext indicates that the component is ready for interaction.
Attributes
-
selected-keys* :ImmutableKeySet.<K>
-
Specifies the selectedKeys, should be hooked into the collection component.
- Supports writeback:
true
Names
Item Name Property selectedKeys
Property change event selectedKeysChanged
Property change listener attribute (must be of type function, see Events and Listeners for additional information.) on-selected-keys*-changed
-
show-tooltip :"disabled"|"enabled"
-
Specifies whether tooltip should be shown on the SelectorAll checkbox
Names
Item Name Property showTooltip
Property change event showTooltipChanged
Property change listener attribute (must be of type function, see Events and Listeners for additional information.) on-show-tooltip-changed
Methods
-
getProperty(property) : {any}
-
Retrieves the value of a property or a subproperty.
Parameters:
Name Type Description property
The property name to get. Supports dot notation for subproperty access. Returns:
- Type
- any
-
setProperties(properties) : {void}
-
Performs a batch set of properties.
Parameters:
Name Type Description properties
An object containing the property and value pairs to set. Returns:
- Type
- void
-
setProperty(property, value) : {void}
-
Sets a property or a single subproperty for complex properties and notifies the component of the change, triggering a corresponding event.
Parameters:
Name Type Description property
The property name to set. Supports dot notation for subproperty access. value
The new value to set the property to. Returns:
- Type
- void