Recycle Bin Usage in Salesforce Lightning
1. Create a List View in the Recycle Bin Tab.2. Click the Char icon. 3. Enter Chart Name and select the other values. Aggregate Type should be count. Click Save button ....
1. Create a List View in the Recycle Bin Tab.2. Click the Char icon. 3. Enter Chart Name and select the other values. Aggregate Type should be count. Click Save button ....
<liveAgent:clientChatQueuePosition /> in Salesforce Chat can be used to show the Queue position. Sample Code: <apex:page showHeader="false"> <style> body { overflow: hidden; width: 100%; height: 100%; padding: 0; margin: 0 ....
1. Go to Sites under Setup.2. Under Sites section, click the Site Label to open the Site.3. Set Clickjack Protection Level to "Allow framing by any page (No protection)".Note: It ....
1. equals() Returns true if they are same and not null. 2. equalsIgnoreCase() Returns true if they are same ignoring Case(Upper or Lower Case) and not null. Sample Code: String ....
<iframe> tag can be used to show Visualforce page inside a Lightning Web Component in Salesforce. Check the following sample implementation for reference. Sample Code: Visualforce: <apex:page > Record Id from ....
Note: 1. Digital Engagement license is required to use this feature. 2. SMS Channel should be setup in the org. Follow the below link for setting up. https://www.infallibletechie.com/2020/12/sms-channel-setup-in-digital-engagement.html Follow the ....
In the below example Notification will be sent to the Account owner when the file is attached to their Account records. Notification Type in Setup: Sample Code: trigger ContentDocumentLinkTrigger on ....
Sample Code: Component: <aura:component implements="force:appHostable" > <aura:attribute name = "defaultVal" type = "String"/> <aura:attribute name = "options" type = "List" default = "[ {'label': 'Apple', 'value': 'apple'}, {'label': 'Banana', 'value': ....
embedded_svc.settings.language should be adjusted to display the Chat in the specified language.For example, embedded_svc.settings.language = 'fr' will display the information in French. Supported Languages - https://help.salesforce.com/articleView?id=faq_getstart_what_languages_does.htm&type=5
Sample Code: Apex Class: public with sharing class AccountController { @AuraEnabled( cacheable = true ) public static AccountWrapper fetchAccounts() { AccountWrapper wrap = new ....