Skip to main content

Type Alias: ShowConfigurator()

ShowConfigurator = () => void

Displays and renders a standard product configurator.

This method makes a previously hidden standard (non-modular) configurator visible and initializes its rendering. It's useful when you've set up a configurator with "Render at page load" disabled and want to show it on demand.

Returns

void

Example

// Show the configurator when a button is clicked
document.getElementById('show-config-btn').addEventListener('click', () => {
window.mimeeqApp.utils.showConfigurator();
});

Deprecated

Method works only for legacy embed version. If you are using web component please use its show() method instead