End users adding and removing Tabs from Salesforce Apps
Admins can set Default On, Default Off and Tab Hidden. End users can personalise the below actions on Tabs in Navigation Bar 1. ReOrder 2. Add 3. Remove To Reset, ....
Admins can set Default On, Default Off and Tab Hidden. End users can personalise the below actions on Tabs in Navigation Bar 1. ReOrder 2. Add 3. Remove To Reset, ....
Sample Code: HTML: <template> <div class="slds-p-around_medium lgc-bg"> <lightning-tree-grid columns = {gridColumns} data = {gridData} key-field = "Id" hide-checkbox-column = true> </lightning-tree-grid> </div> </template> JavaScript: import { LightningElement, track, ....
Sample Apex Class: public class ApprovalProcessController { public static Approval.ProcessResult submitForApproval( Id recordId ) { Approval.ProcessSubmitRequest req1 = new Approval.ProcessSubmitRequest(); req1.setComments( 'Submitting request for approval' ); req1.setObjectId( recordId ); Approval.ProcessResult ....
Sample Code: String str = 'abc-xyz-123';List < String > strList = str.split( '-' );System.debug( 'List String is ' + strList ); Output:
1. What is Salesforce SOS?What is Salesforce SOS?System of systems (SOS) Add SOS to your native Android or iOS mobile app so that your customers can connect with agents via ....
Salesforce Lightning Design System(SLDS) classes can be used to align lightning-button in Salesforce Lightning Web Component. Sample Code: Lightning Web Component HTML: <template> <div class="slds-clearfix"> <div class="slds-float_left"> <lightning-button label="Left" class="slds-m-left_x-small"> ....
Service contracts Service contracts are agreements between you and your customers for a type of customer support. Service contracts can represent different kinds of customer support, such as warranties, subscriptions, ....
Apex Class: public with sharing class AccountController { @AuraEnabled( cacheable = true ) public static List< Account > fetchAccounts( String searchKey ) { String strKey = '%' + searchKey + ....
When the records are selected, call a JavaScript method using onrowselection. Add the selected rows to a list variable. Then using length property in JavaScript, we can get the count of selected ....
Note: Remember that the New Event global action doesn’t support event reminders, even though you can add them to the global action layout. Reference Help Article - https://help.salesforce.com/articleView?id=sf.events_enable_reminders.htm&type=5 Salesforce Idea - https://trailblazer.salesforce.com/ideaView?id=0873A000000cQrGQAU ....