by Andrew Day | Apr 12, 2018 | Salesforce
This example takes all parameters passed in via URL and makes sure they get passed in to the next link.
by Andrew Day | Apr 12, 2018 | Salesforce
If you want self-hosted video files for training employees or viewing internally, here is a way to do it. Source Code
by Andrew Day | Dec 13, 2017 | Salesforce
PART 1: Set Up and get an Up-To-Date Org This tutorial will show you how to pull files from a GitHub, and essentially clone someone’s Salesforce org from a repo. Prerequisites Install Force.com IDEĀ Install Git Step 1: Create a New Trailhead Playground...
by Andrew Day | Nov 26, 2017 | Salesforce, Teaching, Technology, Web Development
Alriiiiight. NOTE: Lightning development requires the creation of many files. It may be useful to write down what you name your various files, so you can easily find them again. Step 1: Update Your Apex Controller to Put Things in the DB We are going to add a method...
by Andrew Day | Nov 26, 2017 | Salesforce, Technology, Web Development
We are building a simple status board like Facebook. Made a custom object called Status__c. It has a custom field called StatusText__c (Text Area). Step 1: Write an Apex Controller to Fetch Data from DB We are going to call this one “StatusService” because...
by Andrew Day | Nov 17, 2017 | Business, Salesforce, Technology, Web Development
I’m using public groups, and approval process, process builder to launch the approval process, and apex/visualforce to select the approvers from public groups. The more expensive the Opportunity, the more approval tiers it needs to go through. Here is the...