force:closeQuickAction event seems to override force:createRecord when fired simultaneously on iOS device.
Last updated 17 days ago ·Reference W-9010122 ·Reported By 1 users
In Review
Summary
force:closeQuickAction event seems to override force:createRecord when fired simultaneously on iOS device and resulting in racing condition.
Repro
[1] Create a Lightning Component
[2] Invoke "force:createRecord" event
[3] Invoke "force:closeQuickAction"
Workaround
Add a delay to synchronize the events
window.setTimeout(
$A.getCallback(function() {
//alert('Waiting');
$A.get("e.force:closeQuickAction").fire();
}), 3000
);
Reported By (1)
Is it Fixed?
Any unreleased services, features, statuses, or dates referenced in this or other public statements are not currently available and may not be delivered on time or at all. Customers who purchase our services should make their purchase decisions based upon features that are currently available.
