Close Menu
SalesforceCodex
    Facebook X (Twitter) Instagram
    Trending
    • How to Leverage Model Context Protocol (MCP) to Enhance Salesforce AI
    • Top Mistakes Developers Make in Salesforce Apex Triggers
    • Introducing Agentforce3 to Salesforce Developers
    • The Ultimate Guide to Apex Order of Execution for Developers
    • How to Handle Bulkification in Apex with Real-World Use Cases
    • How to Confidently Manage Transactions in Salesforce Apex
    • Building a Dynamic Tree Grid in Lightning Web Component
    • 10 Salesforce Chrome Extensions to Boost Your Productivity
    Facebook X (Twitter) Instagram
    SalesforceCodex
    Subscribe
    Wednesday, July 30
    • Home
    • Salesforce Platform
      • Architecture
      • Apex
      • Lightning Web Components
      • Integration
      • Flows & Automation
      • Best Practices
      • Questions
      • News
      • Books Testimonial
    • Industries
      • Artificial Intelligence
    • Hire Me
    • Certification
      • How to Prepare for Salesforce Integration Architect Exam
      • Certification Coupons
    • Downloads
      • Salesforce Release Notes
      • Apex Coding Guidelines
    • About Us
      • Privacy Policy
    • Contact Us
    SalesforceCodex
    Home»Salesforce»Model Popup in Salesforce Lightning

    Model Popup in Salesforce Lightning

    Dhanik Lal SahniBy Dhanik Lal SahniMay 28, 2018Updated:March 19, 2023No Comments2 Mins Read
    Facebook Twitter Pinterest LinkedIn Tumblr Email
    Model Popup in Salesforce Lightning
    Share
    Facebook Twitter LinkedIn Pinterest Email

    Model Popup is very important in some places of CRM application to show records, show messages. I have used this model dialog box in lightning community portal.

    Let us see how to create model dialog box using lightning. We would be required SLDS library. so download and refer it in your base component.

    <aura:component implements="force:appHostable,flexipage:availableForAllPageTypes,flexipage:availableForRecordHome,force:hasRecordId,forceCommunity:availableForAllPageTypes,force:lightningQuickAction" access="global">
    
    <aura:attribute name="openModal" type="boolean" default="false"/>
    
    <aura:attribute name="header" type="string" default="Portal Notification"/>
    
    <aura:attribute name="information" type="string" default="Hello"/>
    <aura:attribute name="param" type="boolean" default="false"/>
    
    <aura:method name="handleOpenModal" action="c.handleOpenModal"/>
    <aura:registerEvent name="onClose" type="c:ModalDialogCloseEvt"/>
    
    <div class="slds-m-around--xx-large">
    <aura:if isTrue="{!v.openModal}">
    <!--Modal Box Start-->
    <div role="dialog" class="slds-modal slds-fade-in-open">
        <div class="slds-modal__container">
        <div class="slds-modal__header green">
        <button class="slds-button slds-modal__close slds-button--icon-inverse" title="Close" onclick="{!c.handleCloseModal}">
    X
           <span class="slds-assistive-text">Close</span>
       </button>
       <h1 class="slds-text-heading--medium">{!v.header}</h1>
    </div>
    
    <!--Modal Box Header-->
    <div class="slds-modal__content slds-p-around--medium">
      <center> 
      <p>
        <b>
         {!v.information}
        </b>
      </p>
      </center>
      </div>
     <!--Modal Box Button-->
      <div class="slds-modal__footer">
      <aura:if isTrue="{!v.param}">
         <lightning:button class="slds-button slds-button--brand" onclick="{!c.handleOkModal}" label="Ok"/>
         </aura:if>
        <lightning:button class="slds-button slds-button--brand" onclick="{!c.handleCloseModal}" label="Cancel"/>
       </div>
      </div>
     </div>
    <div class="slds-backdrop slds-backdrop--open"></div> 
    </aura:if>
    </div>
    </aura:component>

    Model Controller JS File:

    ({
        handleOpenModal: function(component, event, helper) {
            //For Display Modal, Set the "openModal" attribute to "true"
            component.set("v.openModal", true);
        },
       	setOKVisibility: function(component, event, helper,param) {
            componet.set("v.param",param);
        },
        handleCloseModal: function(component, event, helper) {
            //For Close Modal, Set the "openModal" attribute to "fasle"  
            component.set("v.openModal", false);
        },
        handleOkModal:function(component, event,helper) {
            helper.fireEvent(component, true, null);
            component.set("v.openModal", false);
            
        }
    })

    Model Helpr JS File:

    ({
    	closeMe : function(comp, event, helper)  { 
            comp.destroy();
    	},
    	fireEvent : function(component, confirmResult, inputResult) {
            var evt = component.getEvent("onClose");
    	        evt.setParams({
    	        dialogType: 'Information',
    	        confirmResult: true,
    	        inputResult: null,
    	        context: {},
    	    });
            debugger;
    	    evt.fire();
    	}
    })
    

    Model Style File:

    .THIS .white svg {
        color:#FFF;
        fill: rgb(255, 255, 255);
    }
    .THIS .red
    {
        background: red;
        border: 3px solid red;
        color: white;
        float: left;
        text-align: center;
        padding-top: 5px;
    }
    
    .THIS .green
    {
        background: green;
        border: 3px solid green;
        color: white;
        float: left;
        text-align: center;
        padding-top: 5px;
    }
    
    lightning model dialog salesforce
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Previous ArticleCreate Signature Pad in Salesforce Lightning
    Next Article Revisit Asynchronous Apex : Type and Usage
    Dhanik Lal Sahni
    • Website

    Related Posts

    By Dhanik Lal Sahni6 Mins Read

    How to Leverage Model Context Protocol (MCP) to Enhance Salesforce AI

    July 28, 2025
    By Dhanik Lal Sahni7 Mins Read

    Top Mistakes Developers Make in Salesforce Apex Triggers

    July 25, 2025
    By Dhanik Lal Sahni14 Mins Read

    The Ultimate Guide to Apex Order of Execution for Developers

    July 20, 2025
    Add A Comment
    Leave A Reply Cancel Reply

    Ranked #1 Salesforce Developer Blog by SalesforceBen.com
    SFBenTopDeveloper
    Ranked #4 Salesforce Developer Blog by ApexHours.com
    ApexHoursTopDevelopers
    Categories
    Archives
    Tags
    apex (116) apex best practices (5) apex code best practice (10) apex code optimization (6) Apex logging (4) apex rest (11) apex trigger best practices (6) architecture (22) Asynchronous apex (9) AWS (5) batch apex (10) best code practice (4) code optimization (9) custom metadata types (5) design principle (9) flow (16) google (6) google api (4) integration (19) integration architecture (6) lighting (8) lightning (66) lightning-combobox (5) lightning-datatable (10) lightning component (32) Lightning web component (64) lwc (53) named credential (8) optimize apex (5) optimize apex code (6) optimize apex trigger (5) Permission set (4) Queueable (9) queueable apex (4) rest api (23) salesforce (149) salesforce apex (52) salesforce api (4) salesforce api integration (5) Salesforce Interview Question (5) salesforce news (5) salesforce question (5) solid (6) tooling api (5) Winter 20 (8)

    Get our newsletter

    Want the latest from our blog straight to your inbox? Chucks us your detail and get mail when new post is published.
    * indicates required

    MailChimp

    Expert Salesforce Developer and Architect
    Ranked #1 SALESFORCE DEVELOPER BLOG BY SALESFORCEBEN.COM
    Featured on Top Salesforce Developer Blog By ApexHours
    Recent Posts
    • How to Leverage Model Context Protocol (MCP) to Enhance Salesforce AI
    • Top Mistakes Developers Make in Salesforce Apex Triggers
    • Introducing Agentforce3 to Salesforce Developers
    • The Ultimate Guide to Apex Order of Execution for Developers
    • How to Handle Bulkification in Apex with Real-World Use Cases
    Ranked in Top Salesforce Blog by feedspot.com
    RSS Recent Stories
    • Top 10 Salesforce CRM Trends to Watch in 2025 July 18, 2025
    • Discover the Top 10 Salesforce AppExchange Apps to Boost Productivity July 10, 2025
    • Top 20 Salesforce Data Cloud Interview Questions & Answers for Admins June 5, 2025
    • How to Connect Excel to Salesforce to Manage Your Data and Metadata February 9, 2025
    • Difference Between With Security and Without Security in Apex January 2, 2025
    Archives
    Categories
    Tags
    apex (116) apex best practices (5) apex code best practice (10) apex code optimization (6) Apex logging (4) apex rest (11) apex trigger best practices (6) architecture (22) Asynchronous apex (9) AWS (5) batch apex (10) best code practice (4) code optimization (9) custom metadata types (5) design principle (9) flow (16) google (6) google api (4) integration (19) integration architecture (6) lighting (8) lightning (66) lightning-combobox (5) lightning-datatable (10) lightning component (32) Lightning web component (64) lwc (53) named credential (8) optimize apex (5) optimize apex code (6) optimize apex trigger (5) Permission set (4) Queueable (9) queueable apex (4) rest api (23) salesforce (149) salesforce apex (52) salesforce api (4) salesforce api integration (5) Salesforce Interview Question (5) salesforce news (5) salesforce question (5) solid (6) tooling api (5) Winter 20 (8)

    Get our newsletter

    Want the latest from our blog straight to your inbox? Chucks us your detail and get mail when new post is published.
    * indicates required

    banner
    Facebook X (Twitter) Instagram Pinterest YouTube Tumblr LinkedIn Reddit Telegram
    © 2025 SalesforceCodex.com. Designed by Vagmine Cloud Solution.

    Type above and press Enter to search. Press Esc to cancel.

    Ad Blocker Enabled!
    Ad Blocker Enabled!
    Our website is made possible by displaying online advertisements to our visitors. Please support us by disabling your Ad Blocker.