Difference between extends and implements keywords
extends is for extending a class. implements is for implementing an interface. extends is for when you're inheriting from a base class (i.e. extending its functionality). implements is for when ....
extends is for extending a class. implements is for implementing an interface. extends is for when you're inheriting from a base class (i.e. extending its functionality). implements is for when ....
Sample Code: Lightning Component: <aura:component implements="force:appHostable" controller="AccountListController" > <aura:attribute name="markers" type="Object[]"/> <aura:attribute type="Account[]" name="acctList"/> <aura:attribute name="mycolumns" type="List"/> <aura:handler name="init" value="{! this }" action="{! c.fetchAddr }"/> <div class="slds-grid slds-grid_vertical"> <div class="slds-col"> <lightning:datatable data="{! v.acctList }" columns="{! v.mycolumns }" keyField="id" hideCheckboxColumn="true"/> </div> <div class="slds-col"> <lightning:map mapMarkers="{! v.markers }"/> </div> </div> ....
1. Add the fields in the Change Set Components section. 2. Add the Profiles in Profile Settings For Included Components section.
1. Navigate to Setup –> Data –> Data Loader. 2. Download the data loader. 3. Install it following the wizard.Note:Make sure Command Line Tools and Samples option are selected in ....
1. Enable Enhanced Email in Salesforce. https://www.infallibletechie.com/2018/09/enhanced-email-in-salesforce.html 2. Open the Activity Timeline of the record where the email was sent. 3. Select Reply, Reply All, Forward actions to Reply, Reply ....
1. Go to App Manager. 2. Click Edit next to the App. 3. Select Utility Items. 4. Click Add Utility Item. 5. Select Open CTI Softphone.
1. Go to Call Centers in the setup. 2. Select the Imported Call Center. 3. Click Manage Call Center Users. 4. Add/Remove users in/from the Call Centers.
All recipients in the to, cc and bcc fields count against this limit for email sent using Apex or the API. An example being an email with 2 addresses in ....
1. Check whether any email template has hard coded instance name. Note: To know your instance, check https://www.infallibletechie.com/2016/10/how-to-know-salesforce-server-instance.html 2. Check whether any Remote Site Settings has hard coded instance name. ....
1. You can create up to 50 criteria-based sharing rules per object. 2. Text and Text Area fields are case-sensitive. For example, a criteria-based sharing rule that specifies “Manager” in a text ....