How to pass recordId to get current Contact record details using lightning-record-view-form & lightning-output-field elements in Lightning Web Component (LWC) | import the @api decorator to get current record of Contact from recordId uses of lightning-output-field elements in Salesforce LWC

6,068 views


Hey guys, today in this post we are going to learn about How to pass Record Id to get current Contact record details using lightning-record-view-form & lightning-output-field elements in Lightning Web Component (LWC).

The component uses @api to define a public recordId property. If the component is nested in a Lightning record page, which our component is, the Lightning page sets the value of recordId.

The @wire decorator tells getRecord to get the values of the specified fields on the record with the specified $recordId. The $ means that the value is passed dynamically. When the value changes, the wire service provisions data and the component rerenders. To know more detail about Get Record Data in Salesforce LWC, Click Here.

Note:: – You will get an email, so put correct email and mobile number and BEGIN YOUR JOURNEY from Today!
   

 

Files we used to get current Contact record details in Salesforce LWC β†’

lwcRecoridConDetails.html LWc HTML File Template HTML file to get current Contact record details through recordId in Salesforce Lightning Web Component (LWC)
lwcRecoridConDetails.js LWC JavaScript File It’s hold @api decorator to get current record of Contact from recordId in Salesforce lwc.
lwcRecoridConDetails.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.

 

Final Output β†’

record id to get current contact record details in lwc -- w3web.net

 

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 : lwcRecoridConDetails.html

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

Note:: – You will get an email, so put correct email and mobile number and BEGIN YOUR JOURNEY from Today!
 
 

lwcRecoridConDetails.html [Lightning Web Component HTML]

  1.    <template>
  2.     <lightning-card>
  3.     <div class="slds-p-around_medium">
  4.         <h3 class="slds-text-heading_medium"><lightning-icon icon-name="custom:custom86" size="small"></lightning-icon> <strong style="color:#270086; font-size:13px; margin-right:5px;"> How to apply lightning-record-view-form to show Contact detail using recordId in Lightning Web Component (LWC) </strong></h3>
  5.         <br/><br/>
  6.         <lightning-record-view-form record-id={recordId} object-api-name="Contact">
  7.             <div class="slds-grid slds-wrap">
  8.                 <div class="slds-col slds-size_6-of-12">
  9.                     <lightning-output-field field-name="FirstName"></lightning-output-field>                   
  10.                 </div>
  11.                 <div class="slds-col slds-size_6-of-12">
  12.                     <lightning-output-field field-name="LastName"></lightning-output-field>
  13.                 </div>
  14.                 <div class="slds-col slds-size_6-of-12">
  15.                     <lightning-output-field field-name="Email"></lightning-output-field>
  16.                 </div>
  17.                 <div class="slds-col slds-size_6-of-12">
  18.                     <lightning-output-field field-name="Phone"></lightning-output-field>
  19.                 </div>
  20.                 <div class="slds-col slds-size_6-of-12">
  21.                     <lightning-output-field field-name="Title"></lightning-output-field>
  22.                 </div>
  23.                 <div class="slds-col slds-size_6-of-12">
  24.                     <lightning-output-field field-name="Description"></lightning-output-field>
  25.                 </div>
  26.  
  27.             </div>
  28.         </lightning-record-view-form>
  29.          <br/><br/>
  30.         <br/>
  31.    <!--Start RelatedTopics Section-->
  32. <div style="border:1px #ddd solid; padding:10px; background:#eee; margin:40px 0;">
  33.  
  34.             <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>
  35.  
  36.             <br/><br/>
  37.             <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>
  38.             <div style="display:block; overflow:hidden;"> 
  39.                 <div style="width: 50%; float:left; display:inline-block">
  40.                     <ul style="list-style-type: square; font-size: 16px; margin: 0 0 0 54px; padding: 0;"> 
  41.                         <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>
  42.                         <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>
  43.  
  44.                         <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>
  45.                         <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>
  46.                 <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>
  47.                     </ul>
  48.             </div>
  49.  
  50.             <div style="width: 50%; float:left; display:inline-block">   
  51.                     <ul style="list-style-type: square; font-size: 16px; margin: 0 0 0 54px; padding: 0;"> 
  52.  
  53.                        <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>
  54.  
  55.                         <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>
  56.  
  57.                         <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>
  58.                         <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>
  59.                         <li><a href="https://www.w3web.net/update-parent-object-from-child/" target="_blank" rel="noopener noreferrer">update parent field from child using apex trigger</a></li>
  60.                     </ul>
  61.                 </div>
  62.                <div style="clear:both;"></div> 
  63.                <br/>
  64.                 <div class="youtubeIcon">
  65.                     <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>
  66.                 </div>
  67.     </div>
  68.  
  69. </div>
  70.  
  71.   <!--End RelatedTopics Section-->
  72.     </div>
  73. </lightning-card> 
  74. </template>

Create Lightning Web Component JavaScript β†’

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

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

lwcRecoridConDetails.js [LWC JavaScript File]

  1.   import { LightningElement,api } from 'lwc';
  2.  
  3. export default class LwcRecoridConDetails extends LightningElement {
  4.     @api recordId;
  5. }

Create Lightning Web Component Meta XML β†’

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

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

lwcRecoridConDetails.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>

Further post that would you like to learn in Salesforce

 


 

FAQ (Frequently Asked Questions)

Does LWC have record ID?

To get the current record ID in LWC, we just need to import the api decorator from lwc module. Then, we have to declare the property recordId with @api decorator.

What is @wire in LWC?

Components use @wire in their JavaScript class to read data from one of the wire adapters in the lightning/ui*Apimodules and also to call the apex controller server-side methods using wire services.

What is refreshApex in LWC?

To query the server for updated data and refresh the cache, import and call the refreshApex() function. Invoke refreshApex() only when necessary because it incurs a network trip to query the server. The refreshApex() function returns a Promise. When the Promise is resolved, the data in the wire is fresh.

Related Topics | You May Also Like

 
Note:: – You will get an email, so put correct email and mobile number and BEGIN YOUR JOURNEY from Today!
 
 
  

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