How to Hyperlink a Parent Record in lightning:datatable?

Salesforce

How to Hyperlink a Parent Record in lightning:datatable?

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

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}" ....