Posts

Around the Web - 20170512

Brett M. Nelson - Thursday, May 11, 2017

And now for somethings to read over the weekend, if you have some spare time that is. Shell Black Plays Bass @ Texas Dreamin 2017 During the Demo Jam of Texas Dreaming Shell Black of [ShellBlack.co...

Visualforce and Angular - Pre-Fetching Route Data

Brett M. Nelson - Wednesday, May 10, 2017

With the routing we have we should get some real data to show on our contact-details view. We will do that by loading the contact information after the routeLink is clicked. Important Note: To get...

Visualforce and Angular - Add Routing

Brett M. Nelson - Tuesday, May 9, 2017

Last time we styled our contact list with Bootstrap. Let's try adding a second component to show the details of a contact when we select one from the list. Create New Component First thing we will ...

Visualforce and Angular - Local Development

Brett M. Nelson - Monday, May 8, 2017

Last time we set up mocking the Remote Action calls so we can work locally. Lets take advantage of that and update the styles. Get Bootstrap We are going to use Bootstrap 3 for styling. We only wan...

Visualforce and Angular - Mocking @RemoteAction

Brett M. Nelson - Sunday, May 7, 2017

Last time we talked about Visualforce with Angular we got Remote Actions working. This made it so we could get data from Salesforce but we could no longer develop locally. Let's set up some mocking...

Around the Web - 20170504

Brett M. Nelson - Thursday, May 4, 2017

And now for somethings to read over the weekend, if you have some spare time that is. Ionic 2 vs ReactNative vs NativeScript Looking to use JavaScript for a mobile app? Here's a nice comparison of ...

ECMAScript 6 - Spread Syntax

Brett M. Nelson - Wednesday, May 3, 2017

Have you head about the Spread Syntax? It a way to expand in place an iterable. Lets take a look. What? The Spread Syntax allows you to expand an iterable in place. What this means is if you have a...

ECMAScript 6 - Rest Parameters

Brett M. Nelson - Tuesday, May 2, 2017

Let's talk about Rest Parameters! What? A Rest parameter is a way to gather all remaining prameters passed to a function into an array. If you are familiar with the arguments object this may seem s...

Visualforce and Angular - @RemoteAction in Action

Brett M. Nelson - Monday, May 1, 2017

Since last time we added a component and a service we should probably make that server get some data. We will use the @RemoteActions we defined earlier for that. Add Controller Reference To use the...

Around the Web - 20170428

Brett M. Nelson - Friday, April 28, 2017

And now for somethings to read over the weekend, if you have some spare time that is. Announcing TypeScript 2.3 Microsoft's super set of JavaScript has a new release out this week. Check out this a...

Visualforce and Angular - Add a Component and Service

Brett M. Nelson - Thursday, April 27, 2017

We have an Angular app running in Salesforce but so far there isn't much too it. Lets take some time and add a component and a service. Make a Component First we should make a component. I'm going ...

Visualforce and Angular - Setting Up an Apex Controller

Brett M. Nelson - Tuesday, April 25, 2017

With our Angular app running on Visualforce page we now need to be able to get some data for it from Salesforce. We will be adding an Apex controller for this. Create Apex Controller In Mavensmate ...