How to create lightning-card container with custom tab functionality uses a button in the actions slot where we are opening a lightning popup inside a custom form, displaying plain text in the footer slot in Salesforce LWC | How to apply lightning-card to create stylized container around a grouping of information to display different section like Header, Body, Footer and button actions with open a popup inside form in Salesforce LWC (Lightning Web Component)

6,254 views

Hey guys, today in this post we are going to learn about How to create lightning-card container with custom tab functionality uses a button in the actions slot where we are opening a lightning popup inside a custom form, displaying plain text in the footer slot in Salesforce LWC.

A lightning-card is used to apply a stylized container around a grouping of information. The information could be a single item or a group of items such as a related list.

A lightning-card can contain a title, body, actions, and a footer. The title, actions, and footer are optional. You can also provide an icon in the header in front of the title.

Why Should You Schedule Meeting?

🎯 If You Are Facing Any Of These 6 Challenges. Schedule Meeting With Me.

  • Learn Salesforce Development
  • Career Confusion
  • No Interview Call
  • Low Salary
  • No Promotion/Growth
  • No Finding New Job Opportunity
  • Why you stucking from past so many years in same company?

 

Use the actions slot to pass content such as lightning-button-icon or lightning-button to perform an action when clicked. Actions are displayed on the top corner of the card opposite the title. To know more details about lightning-card, Click Here.

 

Files we used to create lightning-card container in Salesforce LWC →

lwcLightningCard.html LWc HTML File Template HTML file to create lightning-card container in Salesforce Lightning Web Component (LWC)
lwcLightningCard.js LWC JavaScript File It’s javascript actions functions to show/hide lightning popup in Salesforce LWC
lwcLightningCard.js-meta.xml XML Meta File It is used to where this lightning web component file you want to display as lightning__AppPage, lightning__RecordPage, lightning__HomePage.
lwcLightningCardApp.app Lightning Application It is used for call the component and preview on browser.

 

 

Final Output →

create lightning-card container with custom tab in lwc -- w3web.net
 
 

You can download file directly from github by Click Here.

 
 
 

You can download file directly from github by Click Here.

 
 

Other related post that would you like to learn in Salesforce

  • Find the below steps ▾

 

Create Lightning Web Component HTML →

Step 1:- Create Lightning Web Component : lwcLightningCard.html

SFDX:Lightning Web Component >> New >> lwcLightningCard.html

lwcLightningCard.html [Lightning Web Component HTML]

  1.    <template>
  2. <lightning-card  variant="Narrow"  title="Weleome to w3web.net Tutorial" icon-name="standard:account">
  3.        <lightning-button label="New" variant="brand" slot="actions" onclick={customShowModalPopup}></lightning-button>
  4.  
  5.         <div class="slds-p-around--medium">
  6.         <lightning-tabset>
  7.             <lightning-tab label="Salesforce LWC" title="Salesforce LWC">
  8.                 <div class="tabContent">
  9.                     <div class="postImage">					
  10.                         <a href="https://www.w3web.net/deleting-multiple-records-with-checkbox-in-lwc/" target="_blank" rel="noopener noreferrer">
  11.                             <img src="https://www.w3web.net/wp-content/uploads/2020/12/deleteMultipleRecordFeature.jpg" width="200" height="150"/>
  12.                         </a>
  13.                     </div> 
  14.                     <div class="imgRt"> 
  15.                     <h3 class="slds-text-heading_medium slds-text-color--error"><strong>Salesforce LWC</strong></h3>  
  16.                     <p class="titleTag"><b><a href="https://www.w3web.net/deleting-multiple-records-with-checkbox-in-lwc/" target="_blank" rel="noopener noreferrer">Deleting multiple records dynamically with checkbox in LWC</a></b></p><br/>
  17.                     <p>Hey guys, today in this post we are going to learn about Deleting multiple records dynamically functionality with checkbox on delete button in lightning web component Salesforce — LWC.</p><br/>
  18.  
  19.                     <p>Here user can delete multiple record using selected checkbox ...<span class="readMore"><a href="https://www.w3web.net/deleting-multiple-records-with-checkbox-in-lwc/" target="_blank" rel="noopener noreferrer">Read more...</a></span></p>
  20.                     </div>     
  21.                 </div>
  22.             </lightning-tab>
  23.             <lightning-tab label="Apex Trigger" title="Apex Trigger">
  24.                 <div class="tabContent">
  25.                     <div class="postImage">					
  26.                         <a href="https://www.w3web.net/trigger-to-send-email-when-record-is-created/" target="_blank" rel="noopener noreferrer">
  27.                             <img src="https://www.w3web.net/wp-content/uploads/2021/01/triggerEmailTemplFeature.jpg" width="200" height="150"/>
  28.                         </a>
  29.                     </div> 
  30.                     <div class="imgRt">  
  31.                     <h3 class="slds-text-heading_medium slds-text-color--error"><strong>Apex Trigger</strong></h3> 
  32.                     <p class="titleTag"><b><a href="https://www.w3web.net/trigger-to-send-email-when-record-is-created/" target="_blank" rel="noopener noreferrer">Trigger to Send a Custom Email Template</a></b></p><br/>
  33.                     <p>Hey guys, today in this post we are going to learn about Apex Trigger to Send a Custom Visualforce Component Email Template when Record is Created on Custom Object in Salesforce.</p><br/>                      
  34.                     <p>Real time scenarios:- Write a trigger on Custom object (Registration__c) and Send a Custom Visualforce Component Email Template when Record is Created Condition is the Student Name should not be null....<span class="readMore"><a href="https://www.w3web.net/trigger-to-send-email-when-record-is-created/" target="_blank" rel="noopener noreferrer">Read more...</a></span></p>
  35.                     </div>   
  36.                 </div>
  37.             </lightning-tab>
  38.             <lightning-tab label="Javascript & JQuery" title="Javascript & JQuery">
  39.                 <div class="tabContent">
  40.                     <div class="postImage">					
  41.                         <a href="https://www.w3web.net/delete-cross-object-records-of-selected-row-in-salesforce/" target="_blank" rel="noopener noreferrer">
  42.                             <img src="https://www.w3web.net/wp-content/uploads/2020/10/addRemoveRowsFeature.png" width="200" height="150"/>
  43.                         </a>
  44.                     </div> 
  45.                     <div class="imgRt"> 
  46.                     <h3 class="slds-text-heading_medium slds-text-color--error"><strong>Javascript and JQuery</strong></h3> 
  47.                     <p class="titleTag"><b><a href="https://www.w3web.net/delete-cross-object-records-of-selected-row-in-salesforce/" target="_blank" rel="noopener noreferrer">Add Or Remove Row Dynamically in JavaScript JQuery</a></b></p><br/>
  48.                     <p>Hey guys, today in this post we are going to learn about How to Add Or Remove Row Dynamically in HTML Order List Using javascript jquery With Row Count (index) Value.</p><br/>                      
  49.                     <p>Creating HTML Order List table and delete row on cross button...<span class="readMore"><a href="https://www.w3web.net/delete-cross-object-records-of-selected-row-in-salesforce/" target="_blank" rel="noopener noreferrer">Read more...</a></span></p>
  50.                     </div>    
  51.                 </div>
  52.             </lightning-tab>
  53.         </lightning-tabset>
  54.  
  55.  
  56.         <!-- modal start -->        
  57. <template if:true={customFormModal}>
  58.  
  59. <section role="dialog" tabindex="-1" aria-labelledby="modal-heading-01" aria-modal="true" aria-describedby="modal-content-id-1" class="slds-modal slds-fade-in-open">
  60. <div class="slds-modal__container">
  61.     <!-- modal header start -->
  62.     <header class="slds-modal__header">
  63.         <button class="slds-button slds-button_icon slds-modal__close slds-button_icon-inverse" title="Close" onclick={customHideModalPopup}>
  64.             <lightning-icon icon-name="utility:close"
  65.             alternative-text="close"
  66.             variant="inverse"
  67.             size="small" ></lightning-icon>
  68.             <span class="slds-assistive-text">Close</span>
  69.         </button>
  70.         <h2 class="slds-text-heading_medium slds-hyphenate">User Information</h2>
  71.     </header>
  72.     <!-- modal body start -->
  73.     <div class="slds-modal__content slds-p-around_medium">
  74.  
  75.     <div class="slds-grid slds-wrap">
  76.         <div class="slds-col slds-size_6-of-12 slds-p-horizontal--medium slds-m-bottom_medium">
  77.             <lightning-input label="Name"></lightning-input>
  78.         </div>
  79. <div class="slds-col slds-size_6-of-12 slds-p-horizontal--medium slds-m-bottom_medium">
  80.             <lightning-input label="Phone" ></lightning-input>
  81.         </div>
  82. <div class="slds-col slds-size_6-of-12 slds-p-horizontal--medium slds-m-bottom_medium">
  83.             <lightning-input label="Email"></lightning-input>
  84.         </div>
  85. <div class="slds-col slds-size_6-of-12 slds-p-horizontal--medium slds-m-bottom_medium">
  86.             <lightning-input label="Designation"></lightning-input>
  87.         </div>
  88. </div>
  89. <!-- modal footer start-->
  90.     <footer class="slds-modal__footer">
  91.         <button class="slds-button slds-button--destructive" onclick={customHideModalPopup}>Cancel</button>
  92.         <button class="slds-button slds-button_brand">Save</button>
  93.     </footer>
  94. </div>
  95. </div>
  96. </section>
  97. <div class="slds-backdrop slds-backdrop_open">
  98. </div>
  99. </template>
  100. <!-- modal end --> 
  101.  
  102.  
  103.         </div>
  104.  
  105.     <p slot="footer" style="border-top:1px #ddd solid; padding:10px;">The place where you can learn step-by-step about Salesforce Lightning Component, Salesforce LWC, Visualforce from <a href="https://www.w3web.net/" target="_blank" rel="noopener noreferrer"><strong>w3web.net</strong></a> </p>
  106.  
  107.  
  108.  
  109.     <br/><br/>
  110.         <!--Start RelatedTopics Section-->
  111. <div style="border:1px #ddd solid; padding:10px; background:#eee; margin:40px 0;">
  112.  
  113.             <p data-aura-rendered-by="435:0"><img src="https://www.w3web.net/wp-content/uploads/2021/05/thumbsUpLike.png" width="25" height="25" style="vertical-align:top; margin-right:10px;" data-aura-rendered-by="436:0"><strong data-aura-rendered-by="437:0"><span style="font-size:16px; font-style:italic; display:inline-block; margin-right:5px;">Don't forget to check out:-</span><a href="https://www.w3web.net/" target="_blank" rel="noopener noreferrer" style="text-decoration:none;" data-aura-rendered-by="440:0">An easy way to learn step-by-step online free Salesforce tutorial, To know more Click  <span style="color:#ff8000; font-size:18px;" data-aura-rendered-by="442:0">Here..</span></a></strong></p>
  114.  
  115.             <br/><br/>
  116.             <p data-aura-rendered-by="435:0"><img src="https://www.w3web.net/wp-content/uploads/2021/07/tickMarkIcon.png" width="25" height="25" style="vertical-align:top; margin-right:10px;" data-aura-rendered-by="436:0"><strong data-aura-rendered-by="437:0"><span style="font-size:17px; font-style:italic; display:inline-block; margin-right:5px; color:rgb(255 128 0);">You May Also Like →</span> </strong></p>
  117.             <div style="display:block; overflow:hidden;"> 
  118.                 <div style="width: 50%; float:left; display:inline-block">
  119.                     <ul style="list-style-type: square; font-size: 16px; margin: 0 0 0 54px; padding: 0;"> 
  120.                         <li><a href="https://www.w3web.net/lwc-get-set-lightning-checkbox-value/" target="_blank" rel="noopener noreferrer">How to get selected checkbox value in lwc</a></li>
  121.                         <li><a href="https://www.w3web.net/display-account-related-contacts-in-lwc/" target="_blank" rel="noopener noreferrer">how to display account related contacts based on AccountId in lwc</a></li>
  122.                         <li><a href="https://www.w3web.net/create-lightning-datatable-row-actions-in-lwc/" target="_blank" rel="noopener noreferrer">how to create lightning datatable row actions in lwc</a></li>
  123.                         <li><a href="https://www.w3web.net/if-and-else-condition-in-lwc/" target="_blank" rel="noopener noreferrer">how to use if and else condition in lwc</a></li>
  124.                         <li><a href="https://www.w3web.net/get-selected-radio-button-value-and-checked-default-in-lwc/" target="_blank" rel="noopener noreferrer">how to display selected radio button value in lwc</a></li>
  125.                     </ul>
  126.             </div>
  127.  
  128.             <div style="width: 50%; float:left; display:inline-block">
  129.                     <ul style="list-style-type: square; font-size: 16px; margin: 0 0 0 54px; padding: 0;"> 
  130.                         <li><a href="https://www.w3web.net/display-account-related-contacts-lwc/" target="_blank" rel="noopener noreferrer">display account related contacts based on account name in lwc</a></li>
  131.                         <li><a href="https://www.w3web.net/create-lightning-datatable-row-actions-in-lwc/" target="_blank" rel="noopener noreferrer">how to insert a record of account Using apex class in LWC</a></li>
  132.                         <li><a href="https://www.w3web.net/fetch-picklist-values-dynamic-in-lwc/" target="_blank" rel="noopener noreferrer">how to get picklist values dynamically in lwc</a></li>
  133.                         <li><a href="https://www.w3web.net/edit-save-and-remove-rows-dynamically-in-lightning-component/" target="_blank" rel="noopener noreferrer">how to edit/save row dynamically in lightning component</a></li>
  134.                         <li><a href="https://www.w3web.net/tree-grid-dynamic-expand-collapse-in-lwc/" target="_blank" rel="noopener noreferrer">how to create tree grid with expanded/collapsed section for the entire row in LWC</a></li>
  135.                     </ul>
  136.                 </div>
  137.                <div style="clear:both;"></div> 
  138.                <br/>
  139.                 <div class="youtubeIcon">
  140.                     <a href="https://www.youtube.com/channel/UCW62gTen2zniILj9xE6LmOg" target="_blank" rel="noopener noreferrer"><img src="https://www.w3web.net/wp-content/uploads/2021/11/youtubeIcon.png" width="25" height="25" style="vertical-align:top; margin-right:10px;"/> <strong>TechW3web:-</strong> To know more, Use this <span style="color: #ff8000; font-weight: bold;">Link</span> </a>
  141.                 </div>
  142.     </div>
  143.  
  144. </div>
  145.  
  146.   <!--End RelatedTopics Section-->
  147. </lightning-card>
  148. </template>

 

Create Lightning Web Component JavaScript →

Step 2:- Create Lightning Web Component : lwcLightningCard.js

SFDX:Lightning Web Component >> New >> lwcLightningCard.js

lwcLightningCard.js [LWC JavaScript File]

  1.    import { LightningElement,track } from 'lwc';
  2.  
  3. export default class LwcLightningCard extends LightningElement {
  4.     @track customFormModal = false; 
  5.  
  6.     customShowModalPopup() {            
  7.         this.customFormModal = true;
  8.     }
  9.  
  10.     customHideModalPopup() {    
  11.  
  12.         this.customFormModal = false;
  13.     }
  14. }

 

Create Lightning Web Component Meta XML →

Step 3:- Create Lightning Web Component : lwcLightningCard.js-meta.xml

SFDX:Lightning Web Component >> New >> lwcLightningCard.js-meta.xml

lwcLightningCard.js-meta.xml [LWC Meta Data XML]

  1.   <?xml version="1.0" encoding="UTF-8"?>
  2. <LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
  3.     <apiVersion>45.0</apiVersion>
  4.     <isExposed>true</isExposed>
  5.     <targets> 
  6.         <target>lightning__AppPage</target>
  7.         <target>lightning__RecordPage</target>
  8.         <target>lightning__HomePage</target>
  9.     </targets>
  10. </LightningComponentBundle>

 

Create Lightning Application

Step 4:- Create Lightning Application : lwcLightningCardApp.app

From Developer Console >> File >> New >> Lightning Application

lwcLightningCardApp.app [Component Application File]

  1.    <aura:application extends="force:slds">
  2.    <c:lwcLightningCard/>
  3. </aura:application>

 
create lightning-card container with custom tab in lwc -- w3web.net
 

Further post that would you like to learn in Salesforce

 

 

FAQ (Frequently Asked Questions)

What is lightning card in LWC?

A lightning-card is used to apply a stylized container around a grouping of information. The information could be a single item or a group of items such as a related list. Use the variant or class attributes to customize the styling.

How do you add a header to a lightning card?

To apply additional styling, use the SLDS utility classes with the class attribute, as shown in the Add an Action to the Footer Slot section. To apply custom styling, use the :host selector. Use SLDS styling hooks to customize the component's style. For example, specify the header font weight and body spacing.

What is variant in Lightning card?

Variants on a component refer to design variations for that component, which enable you to change the appearance of the component easily. This example uses a Lightning Design System class to apply a padding to a paragraph in the lightning:card component.

Related Topics | You May Also Like

 
  

Our Free Courses →

👉 Get Free Course →

📌 Salesforce Administrators

📌 Salesforce Lightning Flow Builder

📌 Salesforce Record Trigger Flow Builder

👉 Get Free Course →

📌 Aura Lightning Framework

📌 Lightning Web Component (LWC)

📌 Rest APIs Integration




Hi, This is Vijay Kumar behind the admin and founder of w3web.net. I am a senior software developer and working in MNC company from more than 8 years. I am great fan of technology, configuration, customization & development. Apart of this, I love to write about Blogging in spare time, Working on Mobile & Web application development, Salesforce lightning, Salesforce LWC and Salesforce Integration development in full time. [Read full bio] | | The Sitemap where you can find all published post on w3web.net

Leave a Comment