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

why closeQuickAction is not working for mobile (issue only on mobile)
is working here
cancel: function(component, event, helper) {
$A.get("e.force:closeQuickAction").fire();
}
but not here
save: function(component, event, helper) {
var action = component.get("c.updateAccRecordType");
action.setParams({
"accid": component.get("v.recordId")
});
$A.enqueueAction(action);
$A.get("e.force:closeQuickAction").fire();
$A.get('e.force:refreshView').fire();
},
cancel: function(component, event, helper) {
$A.get("e.force:closeQuickAction").fire();
}
but not here
save: function(component, event, helper) {
var action = component.get("c.updateAccRecordType");
action.setParams({
"accid": component.get("v.recordId")
});
$A.enqueueAction(action);
$A.get("e.force:closeQuickAction").fire();
$A.get('e.force:refreshView').fire();
},
Can u try this code
All Answers
Can u try this code