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
Salvatore Scarpato 4Salvatore Scarpato 4 

Problem with e.force:closeQuickAction

Hello,
from today I'm experiencing a problem with the action: e.force:closeQuickAction that seems not working. Indeed the action doesn't close a pop-up window that remains opened.

That is a known issue of the Winter 20 release? I did not have the issue until last friday.

Thanks,
Salvatore
Best Answer chosen by Salvatore Scarpato 4
Consultant Vinay BothraConsultant Vinay Bothra
Workaround for QuickAction:
var element = document.getElementsByClassName("DESKTOP uiModal forceModal");   
        element.forEach(function(e, t) {
            $A.util.addClass(e, 'slds-hide');
        });
 

All Answers

Consultant Vinay BothraConsultant Vinay Bothra
Workaround for QuickAction:
var element = document.getElementsByClassName("DESKTOP uiModal forceModal");   
        element.forEach(function(e, t) {
            $A.util.addClass(e, 'slds-hide');
        });
 
This was selected as the best answer
Salvatore Scarpato 4Salvatore Scarpato 4
Thank you very much Vinay !
Your solution works nicely !

Salvatore