Type Alias: MarkOptionModular()
MarkOptionModular = (
option
,blockId
,widgetType
,setMatchingGroup
?,blockCode
?,instanceIds
?) =>Promise
<void
>
Function
Selects options for a modular product component.
This method is similar to markOption, but specifically designed for modular products where multiple components might be selected. It allows you to change options for the currently selected component(s) or for specific instances by ID.
Parameters
option
Option object to select
blockId
string
ID of the block containing the option
widgetType
string
Type of widget the block is using
setMatchingGroup?
boolean
If true, attempts to match this selection in other related blocks
blockCode?
Nullable
<string
>
Name/code of the block, used for auto-sync rules
instanceIds?
string
[]
List of component instance IDs to apply the option to (if omitted, applies to selected component)
Returns
Promise
<void
>
Example
// Select an option for the currently selected component
window.mimeeqApp.actions.markOptionModular(
woodOption, // Option object
'material_block', // Block ID
'materialSelector', // Widget type
true, // Set matching options in other blocks
'wood_type' // Block code
);
// Select an option for specific component instances
window.mimeeqApp.actions.markOptionModular(
fabricOption, // Option object
'fabric_block', // Block ID
'materialSelector', // Widget type
true, // Set matching options in other blocks
'fabric_type', // Block code
['instance123', 'instance456'] // Specific instance IDs to apply to
);
Emits
mimeeq-modular-select-option-multiple When options are selected for multiple instances
Emits
mimeeq-modular-select-option When an option is selected for a single instance