• shuja uddin 2
  • NEWBIE
  • 0 Points
  • Member since 2020

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies
On click of OK in showNotice, I want the whole Lightning component configured in quick action to close. I'm using below code:
cmp.find('createQifNitify').showNotice({
                "variant": "error",
                "header": "Create QIF",
                "message": validationMessageString,
                closeCallback: function() {
                alert('You closed the alert!');
                $A.get("e.force:closeQuickAction").fire();
            }
            });
Is is possible this way?