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
sfadm sfadmsfadm sfadm 

How to handle record change status and open aura component as pop-up?

I have created a pop-up window via an aura component and I need to open the pop-up window only on specific event. When Account record status is changed I need be able to handle such event and to open the pop-up window.
Please advise how it can be achieved?
Many thanks
AnudeepAnudeep (Salesforce Developers) 
Can you look at this example code?

The code sample opens popup on a button click based on a condition (        <aura:if isTrue="{!v.isModalOpen}"> ) using an attribute <aura:attribute name="isModalOpen" type="boolean" default="false"/>

You can try coding along similar lines