DateTime new instance using Apex in Salesforce
Sample Code: /*Constructs a DateTime from the specified date and time in the local time zone.*/ Date myDate = Date.newInstance( 2020, 10, 30 ); Time myTime = Time.newInstance( 3, 3, ....
Sample Code: /*Constructs a DateTime from the specified date and time in the local time zone.*/ Date myDate = Date.newInstance( 2020, 10, 30 ); Time myTime = Time.newInstance( 3, 3, ....
Sample Code: Apex Class: public with sharing class ExampleController { @AuraEnabled(cacheable=true) public static List < Account > fetchAccounts() { return [ SELECT Id, Name, Industry FROM Account LIMIT 10 ]; ....
Sample Code: AccountListController.apex: public class AccountListController { @AuraEnabled public static List < Account > fetchAccts() { return [ SELECT Id, Name, Industry, Type FROM Account LIMIT 10 ]; } } ....
Sample Code: LWC HTML: <template> <lightning-tree-grid columns = {gridColumns} data = {gridData} key-field = "Id" hide-checkbox-column = true onheaderaction = {handleHeaderAction}> </lightning-tree-grid> </template> LWC JavaScript: import { LightningElement, track, wire ....
RegEx can be used to find text between tags in Salesforce using Apex. Sample Code: String str = '<test>abc</test><test>xyz</test>'; Pattern TAG_REGEX = Pattern.compile( '<test>[a-z]*</test>' ); Matcher matcher = TAG_REGEX.matcher( str ....
Sample code: HTML: <template> <div class="slds-box slds-theme_default"> <table class="slds-table slds-table_cell-buffer slds-table_bordered slds-table_col-bordered"> <thead> <tr> <th class="" scope="col"> <div class="slds-truncate" title="Account Name">Name</div> </th> <th class="" scope="col"> <div class="slds-truncate" title="Account Industry">Industry</div> </th> ....
Sample code: HTML: <template> <div class="slds-box slds-theme_default"> <table class="slds-table slds-table_cell-buffer slds-table_bordered slds-table_col-bordered"> <thead> <tr> <th scope="col"> <div class="slds-truncate" title="Account Name">Name</div> </th> <th class="" scope="col"> <div class="slds-truncate" title="Account Industry">Industry</div> </th> <th ....
If Salesforce creates, updates, or deletes data in your org and then accesses external data in the same transaction, an error occurs. In your flow, we recommend using a separate ....
Sample Code: String strJSON = '{"items":[{"Date Field":"01-01-1999","Prototype Settings":"PS3","Hardware Type":"Type1","Overall Status":"In Progress","Source":"Web"},{"Date Field":"18-05-1999","Prototype Settings":"PS6","Hardware Type":"Type3","Overall Status":"Completed","Source":"Email"}]}'; Map < String, Object > fullMap = ( Map < String, Object > )JSON.deserializeUntyped( strJSON ....
Sample code: HTML: <template> <lightning-card title={titleWithCount} icon-name="standard:record"> <lightning-button label="New" slot="actions" onclick={createNew}></lightning-button> <div slot="footer"> <div if:true={countBool}> <lightning-button label="View All" onclick={navigateToRelatedList}></lightning-button> </div> </div> <div class="slds-m-around_medium"> <div if:true={listRecords}> <template for:each={listRecords} for:item="rec"> <div key={rec.Id} ....