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.
Slots
JET elements can have up to two types of child content:
- Any child element with a
slotattribute will be moved into that named slot, e.g.<span slot='startIcon'>...</span>. All supported named slots are documented below. Child elements with unsupported named slots will be removed from the DOM. - Any child element lacking a
slotattribute will be moved to the default slot, also known as a regular child. This is documented under the "Default" heading below.
-
Default
-
The default slot is the collapsible's content.
Example
Initialize the Collapsible with child content specified:
<oj-collapsible> <h3 slot='header'>Header 1</h3> <p>Content 1</p> </oj-collapsible> -
contextMenu
-
The contextMenu slot is set on the
oj-menuwithin this element. This is used to designate the JET Menu that this component should launch as a context menu on right-click, Shift-F10, Press & Hold, or component-specific gesture. If specified, the browser's native context menu will be replaced by the JET Menu specified in this slot.The application can register a listener for the Menu's ojBeforeOpen event. The listener can cancel the launch via event.preventDefault(), or it can customize the menu contents by editing the menu DOM directly, and then calling refresh() on the Menu.
To help determine whether it's appropriate to cancel the launch or customize the menu, the ojBeforeOpen listener can use component API's to determine which table cell, chart item, etc., is the target of the context menu. See the JSDoc and demos of the individual components for details.
Keep in mind that any such logic must work whether the context menu was launched via right-click, Shift-F10, Press & Hold, or component-specific touch gesture.
Example
Initialize the component with a context menu:
<oj-some-element> <-- use the contextMenu slot to designate this as the context menu for this component --> <oj-menu slot="contextMenu" style="display:none" aria-label="Some element's context menu"> ... </oj-menu> </oj-some-element> -
header
-
The
headerslot is the collapsible's header. If not specified, the header contains only an open/close icon. Note that the header text is required for JET collapsible for accessibility purposes.Example
Initialize the Collapsible with the header slot specified:
<oj-collapsible> <h3 slot='header'>Header 1</h3> <p>Content 1</p> </oj-collapsible>
Attributes
-
disabled :boolean
-
Disables the collapsible if set to
true.- Default Value:
false
Names
Item Name Property disabledProperty change event disabledChangedProperty change listener attribute (must be of type function) on-disabled-changedExamples
Initialize the collapsible with the
disabledattribute specified:<oj-collapsible disabled='true'></oj-collapsible>Get or set the
disabledproperty after initialization:// getter var disabledValue = myCollapsible.disabled; // setter myCollapsible.disabled = false; -
expand-area :string
-
Where in the header to click to toggle disclosure.
- Default Value:
"header"
Supported Values:
Name Type Description "disclosureIcon"string click the disclosureIcon to toggle disclosure "header"string click any where in the header to toggle disclosure Names
Item Name Property expandAreaProperty change event expandAreaChangedProperty change listener attribute (must be of type function) on-expand-area-changedExamples
Initialize the collapsible with the
expand-areaattribute specified:<oj-collapsible expand-area='disclosureIcon'></oj-collapsible>Get or set the
expand-areaproperty after initialization:// getter var expandAreaValue = myCollapsible.expandArea; // setter myCollapsible.expandArea = 'disclosureIcon'; -
expanded :boolean
-
Specifies if the content is expanded.
- Default Value:
false
- Supports writeback:
true
Names
Item Name Property expandedProperty change event expandedChangedProperty change listener attribute (must be of type function) on-expanded-changedExamples
Initialize the collapsible with the
expandedattribute specified:<oj-collapsible expanded='true'></oj-collapsible>Get or set the
expandedproperty after initialization:// getter var expandedValue = myCollapsible.expanded; // setter myCollapsible.expanded = false; -
translations :Object|null
-
A collection of translated resources from the translation bundle, or
nullif this component has no resources. Resources may be accessed and overridden individually or collectively, as seen in the examples.If the component does not contain any translatable resource, the default value of this attribute will be
null. If not, an object containing all resources relevant to the component.If this component has translations, their documentation immediately follows this doc entry.
Names
Item Name Property translationsProperty change event translationsChangedProperty change listener attribute (must be of type function) on-translations-changedExamples
Initialize the component, overriding some translated resources and leaving the others intact:
<!-- Using dot notation --> <oj-some-element translations.some-key='some value' translations.some-other-key='some other value'></oj-some-element> <!-- Using JSON notation --> <oj-some-element translations='{"someKey":"some value", "someOtherKey":"some other value"}'></oj-some-element>Get or set the
translationsproperty after initialization:// Get one var value = myComponent.translations.someKey; // Set one, leaving the others intact. Always use the setProperty API for // subproperties rather than setting a subproperty directly. myComponent.setProperty('translations.someKey', 'some value'); // Get all var values = myComponent.translations; // Set all. Must list every resource key, as those not listed are lost. myComponent.translations = { someKey: 'some value', someOtherKey: 'some other value' };
Events
-
ojBeforeCollapse
-
Triggered immediately before the collapsible is collapsed. Call
event.preventDefault()in the event listener to veto the event, which prevents the content from collapsing.Properties:
All of the event payloads listed below can be found under
event.detail.Name Type Description headerElement The header that is about to be collapsed. contentElement The content that is about to be collapsed. Examples
Specify an
ojBeforeCollapselistener via the DOM attribute:<oj-collapsible on-oj-before-collapse='[[listener]]'></oj-collapsible>Specify an
ojBeforeCollapselistener via the JavaScript property:myCollapsible.onOjBeforeCollapse = listener;Add an
ojBeforeCollapselistener via theaddEventListenerAPI:myCollapsible.addEventListener('ojBeforeCollapse', listener); -
ojBeforeExpand
-
Triggered immediately before the collapsible is expanded. Call
event.preventDefault()in the event listener to veto the event, which prevents the content from expanding.Properties:
All of the event payloads listed below can be found under
event.detail.Name Type Description headerElement The header that is about to be expanded. contentElement The content that is about to be expanded. Examples
Specify an
ojBeforeExpandlistener via the DOM attribute:<oj-collapsible on-oj-before-expand='[[listener]]'></oj-collapsible>Specify an
ojBeforeExpandlistener via the JavaScript property:myCollapsible.onOjBeforeExpand = listener;Add an
ojBeforeExpandlistener via theaddEventListenerAPI:myCollapsible.addEventListener('ojBeforeExpand', listener); -
ojCollapse
-
Triggered after the collapsible has been collapsed.
Properties:
All of the event payloads listed below can be found under
event.detail.Name Type Description headerElement The header that was just collapsed. contentElement The content that was just collapsed. Examples
Specify an
ojCollapselistener via the DOM attribute:<oj-collapsible on-oj-collapse='[[listener]]'></oj-collapsible>Specify an
ojCollapselistener via the JavaScript property:myCollapsible.onOjCollapse = listener;Add an
ojCollapselistener via theaddEventListenerAPI:myCollapsible.addEventListener('ojCollapse', listener); -
ojExpand
-
Triggered after the collapsible has been expanded (after animation completes).
Properties:
All of the event payloads listed below can be found under
event.detail.Name Type Description headerElement The header that was just expanded. contentElement The content that was just expanded. Examples
Specify an
ojExpandlistener via the DOM attribute:<oj-collapsible on-oj-expand='[[listener]]'></oj-collapsible>Specify an
ojExpandlistener via the JavaScript property:myCollapsible.onOjExpand = listener;Add an
ojExpandlistener via theaddEventListenerAPI:myCollapsible.addEventListener('ojExpand', listener);
Methods
-
getProperty(property) → {any}
-
Retrieves a value for a property or a single subproperty for complex properties.
Parameters:
Name Type Description propertystring The property name to get. Supports dot notation for subproperty access. - Since:
- 4.0.0
Returns:
- Type
- any
Example
Get a single subproperty of a complex property:
var subpropValue = myComponent.getProperty('complexProperty.subProperty1.subProperty2'); -
refresh() → {void}
-
Refreshes the visual state of the collapsible.
This method does not accept any arguments.
Returns:
- Type
- void
Example
Invoke the
refreshmethod:myCollapsible.refresh(); -
setProperties(properties) → {void}
-
Performs a batch set of properties.
Parameters:
Name Type Description propertiesObject An object containing the property and value pairs to set. - Since:
- 4.0.0
Returns:
- Type
- void
Example
Set a batch of properties:
myComponent.setProperties({"prop1": "value1", "prop2.subprop": "value2", "prop3": "value3"}); -
setProperty(property, value) → {void}
-
Sets a property or a single subproperty for complex properties and notifies the component of the change, triggering a [property]Changed event.
Parameters:
Name Type Description propertystring The property name to set. Supports dot notation for subproperty access. valueany The new value to set the property to. - Since:
- 4.0.0
Returns:
- Type
- void
Example
Set a single subproperty of a complex property:
myComponent.setProperty('complexProperty.subProperty1.subProperty2', "someValue");