You need to sign in to do that
Don't have an account?

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
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
var element = document.getElementsByClassName("DESKTOP uiModal forceModal");
element.forEach(function(e, t) {
$A.util.addClass(e, 'slds-hide');
});
All Answers
var element = document.getElementsByClassName("DESKTOP uiModal forceModal");
element.forEach(function(e, t) {
$A.util.addClass(e, 'slds-hide');
});
Your solution works nicely !
Salvatore