Newer Version Available
Using Pop-Out Utilities
Standard Utilities
Custom Utilities
Pop-out is available for custom utilities. To enable pop-out for custom utilities, activate the Utility Bar: Enable Pop-Out for Custom Utilities critical update. The critical update enables pop-out for all utilities in the “Custom” and “Custom – Managed” categories. Test your custom utilities in a sandbox environment before you enable the update.
Disabling Pop-Out
If you don’t want your custom utility to be popped out, you can disable pop-out in two ways.
Disabling Pop-Out within the ComponentUse the lightning:utilityItem interface in your component and set the supportsPopOut attribute to false to disable pop-out.
1<aura:component implements="lightning:utilityItem">
2 <aura:attribute name="supportsPopOut" type="Boolean" default="false" />
3</aura:component>Disabling pop-out within the component itself is a useful and simple way to ensure that the component can never be popped out.
Disabling Pop-Out with the Lightning Console JavaScript APIUse the disableUtilityPopOut() method and set the disabled argument to true to disable utility pop-out.
If you’re migrating from a Classic console app and using a Visualforce page for your utility, we automatically respect if setCustomConsoleComponentPopoutable is set to false.
Disabling pop-out with the Lightning Console JavaScript API allows you to enable and disable pop-out in real time.