function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
DanishDanish 

How to open modal pop up without new tab in CONSOLE Navigation App

I have overridden a NEW button on a related list on Lead Object using an AURA Component which contains modal pop-up code.
When clicking on that new Button, in a STANDARD NAVIGATION App, the modal pop-up appears.
But when trying the same functionality in CONSOLE NAVIGATION App, it first opens a new tab and then a modal popup

 

Is there any way to avoid that tab from opening. The component should directly open a popup ??

AbhinavAbhinav (Salesforce Developers) 
Hi Danish,

Actually console navigation let you open multiple records at a time, and related records open in subtabs under the original record.

reference:
https://www.forcetalks.com/salesforce-topic/what-are-the-differences-between-console-app-and-standard-app/#:~:text=Apps%20with%20standard%20navigation%20let,through%20a%20list%20of%20records.

Thanks!