Salesforce Lightning Experience

Salesforce

Salesforce Lightning User FAQ

Printable view in reports in Lightning Experiencehttps://www.infallibletechie.com/2018/12/printable-view-in-reports-in-lightning.htmlHow to navigate to related list record in Lighting Experience?https://www.infallibletechie.com/2018/03/how-to-navigate-to-related-list-record.htmlEnhanced Lead Convert in Lightning Experiencehttps://www.infallibletechie.com/2017/12/enhanced-lead-convert-in-lightning.htmlHow to find Duplicates in Salesforce Lightning Experiencehttps://www.infallibletechie.com/2017/05/how-to-find-duplicates-in-salesforce.htmlBookmark in Lightning ....

Salesforce

How to get default field values set in URL in Lightning Aura Components in Salesforce?

 Sample Code:Component: <aura:component implements="flexipage:availableForRecordHome,force:hasRecordId,lightning:actionOverride,lightning:isUrlAddressable" access="global" >        <aura:attribute name="recordId" type="String"/>        <lightning:notificationsLibrary aura:id="notifLib"/>        <div class="slds-box slds-theme--default">                <lightning:recordEditForm objectApiName="Lead" onload="{!c.handleCreateLoad}">            <lightning:messages />            <lightning:inputField fieldName="FirstName" aura:id="FirstName"/>            <lightning:inputField fieldName="LastName" aura:id="LastName"/>            <lightning:inputField fieldName="Email" ....

Salesforce

How to use Name instead of Id in lightning:dataTable URL

tooltip can be used to show Name instead of Id in URL type.Sample Code:Component: <aura:component implements="force:appHostable"                   controller="AccountListController">                    <aura:attribute type="Account[]" name="acctList"/>    <aura:attribute name="mycolumns" type="List"/>        <aura:handler name="init" value="{!this}" ....

Salesforce

How to display parent field value in lightning:datatable in Salesforce Lightning Component

Component:<aura:component implements="force:appHostable"                controller="ContactController">                    <aura:attribute type="Contact[]" name="contactList"/>    <aura:attribute name="mycolumns" type="List"/>        <aura:handler name="init" value="{!this}" action="{!c.init}"/>        <lightning:datatable data="{! v.contactList }"                          columns="{! v.mycolumns }"                          keyField="Id"                         hideCheckboxColumn="true"                         ....