This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Launch Apex Replay Debugger", | |
"type": "apex-replay", | |
"request": "launch", | |
"logFile": "${command:AskForLogFileName}", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "browser-preview", | |
"request": "attach", | |
"name": "Browser Preview: Attach" | |
}, | |
{ | |
"type": "browser-preview", | |
"request": "launch", | |
"name": "Browser Preview: Launch", | |
"url": "http://localhost:3333" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//The enqueue deployment call (last call above), can optionally take a callback argument. | |
//I was running into an issue and needed a bit more debugging, so here's my callback for that. | |
//This call can be an inner class, by the way. | |
public class CustomMetadataCallback implements Metadata.DeployCallback { | |
public void handleResult(Metadata.DeployResult result, Metadata.DeployCallbackContext context) { | |
System.debug('status: ' + result.status); | |
if(!result.success){ | |
System.debug('error1: ' + result.errorMessage); | |
System.debug('error2: ' + result.errorStatusCode); | |
System.debug('error3: ' + result.errorMessage); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { LightningElement } from 'lwc'; | |
import moment from '@salesforce/resourceUrl/moment'; | |
import { loadScript } from 'lightning/platformResourceLoader'; | |
export default class MomentStuffs extends LightningElement { | |
renderedCallback(){ | |
Promise.all([ | |
loadScript(this, moment + '/moment.js') | |
]).then(() => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class InvocableDebugger{ | |
@InvocableMethod | |
public static void debugMessage(List<String> messages){ | |
for(String str : messages){ | |
System.debug(str); | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* ContactsCtrl | |
* @description Apex and stuff.. | |
* @author | |
* @date 11/21/2016 | |
*/ | |
public with sharing class ContactsCtrl { | |
@AuraEnabled | |
public static List<Contact> getContacts(){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @description Simple invocable class (can be called via process or flow). For logging a message or messages to the debug logs. | |
* @author James Loghry | |
* @date 8/1/2016 | |
*/ | |
public class InvocableLogger { | |
@InvocableMethod | |
public static void log(List<String> messages){ | |
if(messages != null){ | |
for(String message : messages){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IF( | |
OR( | |
ISBLANK(Available_From__c) | |
,Available_From__c < CASE( | |
MOD(TODAY() - DATE( 1900, 1, 7 ), 7 ), | |
2, TODAY() + 2 + 4, | |
3, TODAY() + 2 + 4, | |
4, TODAY() + 2 + 4, | |
5, TODAY() + 2 + 4, | |
6, TODAY() + 1 + 4, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- LDS markup for a checkbox (https://www.lightningdesignsystem.com/components/forms/) --> | |
<div class="slds-form-element margintop10"> | |
<label class="slds-checkbox" for="requiredCheckbox"> | |
<ui:inputCheckbox aura:Id="requiredCheckbox" value="{!v.selectedFormObject.Required_On_Form__c}" /> | |
<span class="slds-checkbox--faux" /> | |
<span class="slds-form-element__label marginleft10">Required on Form?</span> | |
</label> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
List<Account> parentAccounts = new List<Account>(); | |
for(Contact contactWithAccountInfo : [Select Name,Account.Name,Account.AnnualRevenue From Contact]){ | |
System.debug('Contact Account Id: ' + contactWithAccountInfo.Account.Id); | |
parentAccounts.add(contactWithAccountInfo.Account); | |
} |
NewerOlder