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.
-
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>
Attributes
-
selected-step :string
-
Indicates the id of the current selected step. Default is the first step in the steps array.
- Supports writeback:
true
Names
Item Name Property selectedStepProperty change event selectedStepChangedProperty change listener attribute (must be of type function) on-selected-step-changedExamples
Initialize the Train with the
selected-stepattribute specified<oj-train selected-step='{{selectedStepValue}}'></oj-train>Get or set the
selectedStepproperty after initialization//Get train selected step var selectedStep = myTrain.selectedStep; //Set train selected step myTrain.selectedStep = 'stp1'; -
steps :Array.<oj.ojTrain.Step>
-
The array of step objects. Each oj.ojTrain.Step must have an 'id' and 'label' property.
Names
Item Name Property stepsProperty change event stepsChangedProperty change listener attribute (must be of type function) on-steps-changedExamples
Initialize the Train with the
stepsattribute specified<oj-train steps='[{"id":"id1", "label":"Label 1"}, {"id":"id2", "label":"Label 2", "disabled": false, "visited": true, "messageType":"info"}]'></oj-train>Get or set the
stepsproperty after initialization//Get one var step = myTrain.steps[0]; //Get all var steps = myTrain.steps; //Set all. Must list every resource key, as those not listed are lost. myTrain.steps = [{ 'id':'id1', 'label': 'Label 1'}, {'id':'id2', 'label': 'Label 2', "disabled": false, "visited": true, "messageType":"info"}]; -
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
-
ojBeforeDeselect
-
Triggered immediately before a step is deselected. The ojBeforeDeselect can be cancelled by calling
event.preventDefault().Properties:
All of the event payloads listed below can be found under
event.detail.Name Type Description toStepstring The step that is about to be deselected. fromStepstring The step that is about to be selected. Examples
Specify an
ojBeforeDeselectlistener via the DOM attribute:<oj-train on-oj-before-deselect='[[listener]]'></oj-train>Specify an
ojBeforeDeselectlistener via the JavaScript property:myTrain.onOjBeforeDeselect = listener;Add an
ojBeforeDeselectlistener via theaddEventListenerAPI:myTrain.addEventListener('ojBeforeDeselect', listener); -
ojBeforeSelect
-
Triggered immediately before a Step is selected. The ojBeforeSelect can be cancelled by calling
event.preventDefault().Properties:
All of the event payloads listed below can be found under
event.detail.Name Type Description toStepstring The step that is about to be deselected. fromStepstring The step that is about to be selected. Examples
Specify an
ojBeforeSelectlistener via the DOM attribute:<oj-train on-oj-before-select='[[listener]]'></oj-train>Specify an
ojBeforeSelectlistener via the JavaScript property:myTrain.onOjBeforeSelect = listener;Add an
ojBeforeSelectlistener via theaddEventListenerAPI:myTrain.addEventListener('ojBeforeSelect', listener); -
ojDeselect
-
Triggered after a step has been deselected. The ojDeselect can be cancelled by calling
event.preventDefault().Properties:
All of the event payloads listed below can be found under
event.detail.Name Type Description toStepstring The step that is about to be deselected. fromStepstring The step that is about to be selected. Examples
Specify an
ojDeselectlistener via the DOM attribute:<oj-train on-oj-deselect='[[listener]]'></oj-train>Specify an
ojDeselectlistener via the JavaScript property:myTrain.onOjDeselect = listener;Add an
ojDeselectlistener via theaddEventListenerAPI:myTrain.addEventListener('ojDeselect', listener); -
ojSelect
-
Triggered after a step has been selected.
Properties:
All of the event payloads listed below can be found under
event.detail.Name Type Description toStepstring The step that is about to be deselected. fromStepstring The step that is about to be selected. Examples
Specify an
ojSelectlistener via the DOM attribute:<oj-train on-oj-select='[[listener]]'></oj-train>Specify an
ojSelectlistener via the JavaScript property:myTrain.onOjSelect = listener;Add an
ojSelectlistener via theaddEventListenerAPI:myTrain.addEventListener('ojSelect', listener);
Methods
-
getNextSelectableStep() → {string|null}
-
Returns the id of the next selectable step based on the current selectedStep. If the current step is the last selectable step, the function returns null
Returns:
next selectable Id- Type
- string | null
-
getPreviousSelectableStep() → {string|null}
-
Returns the id of the previous selectable step based on the current selectedStep. If the current step is the first selectable step, the function returns null
Returns:
previous selectable Id- Type
- string | null
-
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'); -
getStep(id) → {(oj.ojTrain.Step|null)}
-
Returns the step based on the id passed in. If the step doesn't exist, return null.
Parameters:
Name Type Description idstring The id of the step. Returns:
step object.- Type
- (oj.ojTrain.Step|null)
-
refresh() → {void}
-
Refreshes the train.
This method does not accept any arguments.
Returns:
- Type
- void
-
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"); -
updateStep(id, stepProperties) → {void}
-
Update the step with the specified id with the provided property bag.
Parameters:
Name Type Description idstring The id of the step to update stepPropertiesObject The set of step properties to update. Will overwrite any previously set values. Properties
Name Type Argument Description idstring <optional>
id of step labelstring <optional>
label of step disabledboolean <optional>
whether step is disabled visitedboolean <optional>
whether step has been visited messageType"info" | "error" | "fatal" | "warning" <optional>
type of message displayed Returns:
- Type
- void
Type Definitions
-
Step
-
Properties:
Name Type Argument Description idstring string id of the step labelstring string label of the step disabledboolean <optional>
boolean indicates whether the step is disabled visitedboolean <optional>
boolean indicates whether the step has been visited messageType"info" | "error" | "fatal" | "warning" <optional>
string the type of message icon displayed on the step