Lookup field with option to create new record in Custom Lightning Component
Sample Code: <aura:component implements="force:appHostable" > <aura:attribute name="oppty" type="Opportunity" ....
Sample Code: <aura:component implements="force:appHostable" > <aura:attribute name="oppty" type="Opportunity" ....
Sample Code: <aura:component implements="force:appHostable" > <lightning:listView aura:id="listViewAccounts" objectApiName="Account" listName="AllAccounts" rows="5" showActionBar="false" enableInlineEdit="true" showRowLevelActions="false" /> </aura:component> Output:
1. Click Edit Page. 2. Click Tab on the left and Add Tab on the right. 3. Click Details and select Custom. 4. Enter any Name and click Done. 5. ....
Add the force:hasRecordId interface to a Lightning component to enable the component to be assigned the ID of the current record. The current record ID is useful if the component ....
Sample Code: ComponentOne.cmp <aura:component implements="force:appHostable" > <aura:attribute name="Txt" type="String" default=""/> <div class="slds-box slds-theme_default"> This is component 1.<br/><br/> <lightning:input ....
To convert or encode/decode utf to string online, check the below links https://r12a.github.io/apps/conversion/ http://www.cafewebmaster.com/online_tools/utf8_encode - Select Raw URL Decode https://www.url-encode-decode.com
Below are the List of Integration Patterns in Salesforce: 1. Remote Process Invocation—Request and Reply Salesforce invokes a process on a remote system, waits for completion of that process, and then ....
Individual object represents a customer’s data privacy and protection preferences. Data privacy records based on the Individual object store customer's privacy preferences and are associated with a lead or a ....
Once a synchronous Apex request runs longer than 5 seconds, it begins counting against this limit. Each organization is allowed 10 concurrent long-running requests. If the limit is reached, any ....
Sample Code: Component: <aura:component implements="force:appHostable" controller="OpportunitySearchController"> <aura:attribute name="oppty" type="Opportunity" default="{ 'sobjectType': 'Opportunity'}"/> <aura:attribute name="columns" type="List"/> <aura:attribute name="opportunityList" type="Opportunity[]"/> <aura:attribute name="PaginationList" type="Opportunity[]"/> <aura:attribute name="startPage" type="Integer" /> <aura:attribute name="endPage" type="Integer"/> <aura:attribute name="totalRecords" ....