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 <oj-buttonset-many> element accepts
oj-options as children. See theoj-optiondoc for details about accepted children and slots.Example
Initialize the Buttonset with child content specified:
<oj-buttonset-many> <oj-option value="myValue">myValue</span> </oj-buttonset-many> -
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
-
chroming :string
-
Indicates in what states the buttonset's buttons have chrome (background and border).
A buttonset's chroming must be set by setting this buttonset attribute (or setting the chroming attribute of a containing toolbar).
The default chroming varies by theme and containership as follows:
- If the buttonset is in a toolbar, then the default chroming is the current value of the toolbar's chroming attribute.
- Else, if
$buttonsetChromingOptionDefaultis set in the current theme as seen in the example below, then that value is the chroming default. - Else, the default chroming is
"full".
Once a value has been set on this buttonset attribute, that value applies regardless of theme and containership.
Supported Values:
Name Type Description "full"string In typical themes, full-chrome buttons always have chrome. "half"string In typical themes, half-chrome buttons acquire chrome only in their hover, active, and selected states. Half-chroming is recommended for buttons in a toolbar. (This is the toolbar default in most themes.) "outlined"string In typical themes, outlined buttons are similar to half-chrome buttons, but have a border in the default state. Names
Item Name Property chromingProperty change event chromingChangedProperty change listener attribute (must be of type function) on-chroming-changedExamples
Initialize the Buttonset with the
chromingattribute specified:<oj-buttonset-many chroming='half'></oj-buttonset-many>Get or set the
chromingproperty after initialization:// getter var chromingValue = myButtonset.chroming; // setter myButtonset.chroming = 'half';Set the default in the theme (SCSS) :
$buttonsetChromingOptionDefault: half !default; -
disabled :boolean
-
Setting the Buttonset's
disabledattribute effectively disables all its Buttons, without affecting theirdisabledattributes. Thus, a Button is effectively disabled if either its owndisabledattribute is set, or the Buttonset'sdisabledattribute is set.- Default Value:
false
Names
Item Name Property disabledProperty change event disabledChangedProperty change listener attribute (must be of type function) on-disabled-changedExamples
Initialize the Buttonset with the
disabledattribute specified:<oj-buttonset-many disabled='true'></oj-buttonset-many>Get or set the
disabledproperty after initialization:// getter var disabledValue = myButtonset.disabled; // setter myButtonset.disabled = true; -
display :string
-
Whether to display both the label and icons (
"all") or just the icons ("icons") of the buttons. In the latter case, the label is displayed in a tooltip instead.The
displayattribute will be ignored if no icons exist in the button.- Default Value:
"all"
Supported Values:
Name Type Description "all"string Display both the label and icons. "icons"string Display only the icons. Names
Item Name Property displayProperty change event displayChangedProperty change listener attribute (must be of type function) on-display-changedExamples
Initialize the Buttonset with the
displayattribute specified:<oj-buttonset-many display='icons'></oj-buttonset-many>Get or set the
displayproperty after initialization:// getter var displayValue = myButtonset.display; // setter myButtonset.display = 'icons'; -
focus-management :string
-
The
focusManagementattribute should be set to"none"when the Buttonset is placed in a JET Toolbar. This allows the Toolbar to manage the focus with no interference from the Buttonset, so that arrow keys move within the entire Toolbar, not just within the Buttonset.- Default Value:
"oneTabstop"
Supported Values:
Name Type Description "none"string Focus management is disabled, to avoid interfering with the focus management of a containing component. "oneTabstop"string Focus management is enabled. The Buttonset is a single tabstop with arrow-key navigation. Names
Item Name Property focusManagementProperty change event focusManagementChangedProperty change listener attribute (must be of type function) on-focus-management-changedExamples
Initialize the Buttonset with the
focusManagementattribute specified:<oj-buttonset-many focus-management='none'></oj-buttonset-many>Get or set the
focusManagementproperty after initialization:// getter var focusManagementValue = myButtonset.focusManagement; // setter myButtonset.focusManagement = 'none'; -
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' }; -
value :Array.<any>|null
-
The
valueattribute indicates whichoj-options in the Buttonset are selected. It corresponds to thevalueattribute of those elements, which should always be set.valueis a possibly empty, non-nullstring array containing thevalueattributes of the selectedoj-options. This array has "set", not "list", semantics; i.e. order is neither important nor guaranteed. Thus, an n-oj-optionset has 2^n validvaluevalues: the 2^n possible subsets of noj-options.In all other cases,
valueisnull.It's still possible for the
valueattribute and DOM to get out of sync by other means. In this case, the app is responsible for updating thevalueattribute. A typical case is when the set of Buttons contained in the Buttonset changes, possibly due to a Knockout binding, in which case the app must first callrefresh(as in all cases when the DOM changes underneath a component), and then update thevalueattribute to the desired value.Often there is no need to listen for this event, since the
valuebinding, discussed above, will update the bound observable whenever thevaluestate changes. The declarative binding is often preferable to an explicit listener.A click listener should not be used to detect changes to the
valuestate. The attributevaluebinding and/or thevalueChangeevent should be used instead.- Default Value:
null
- Supports writeback:
true
Names
Item Name Property valueProperty change event valueChangedProperty change listener attribute (must be of type function) on-value-changedExamples
Initialize the Buttonset with the
valueattribute specified:<oj-buttonset-many value='{{["bold", "italic"]}}'></oj-buttonset-many>Get or set the
valueproperty after initialization:// Get one (if many) var value = myButtonset.value[0]; // Get all var values = myButtonset.value; // Set one. (If many. No property change event will be fired.) myButtonset.value[1] = 'bold'; // Set all. myButtonset.value = ["bold", "italic"];
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 component.
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");