Posts

Around the Web – 20170721

Around the Web – 20170721

Brett M. Nelson - Friday, July 21, 2017

And now for somethings to read over the weekend, if you have some spare time that is. All About the Salesforce MVP Program: Summer '17 Nominations open NOW Summer '17 nominations are now open for S...
Saleforce Mobile SDK and Ionic – Edit Contact Part I

Saleforce Mobile SDK and Ionic – Edit Contact Part I

Brett M. Nelson - Thursday, July 20, 2017

Now that we can view a Contacts Details we should come up with a way to edit them.  Let's set something up to handle editing now. Update ContactServiceProvider To edit a contact we will need some w...
Saleforce Mobile SDK and Ionic – Display Contact Details

Saleforce Mobile SDK and Ionic – Display Contact Details

Brett M. Nelson - Wednesday, July 19, 2017

So far we have a big list of contacts but what if we wanted to display just the details for one contact?  Most of what is required we have already done but I don't want to just magically poof the p...
Saleforce Mobile SDK and Ionic – Display Contacts

Saleforce Mobile SDK and Ionic – Display Contacts

Brett M. Nelson - Tuesday, July 18, 2017

Since we can now query Salesforce to get an array of contacts we should probably make use of them on our Contacts page. Update Contacts Component Open up your ContactsPage class.  We are going to i...
Saleforce Mobile SDK and Ionic - Query Contacts

Saleforce Mobile SDK and Ionic - Query Contacts

Brett M. Nelson - Monday, July 17, 2017

Now that we have a provider called contacts-service.ts and our app is freshly updated lets use ForceJS to query for the contacts to display on our Contacts page. Create a Query Like when we added o...

Around the Web – 20170714

Brett M. Nelson - Friday, July 14, 2017

And now for somethings to read over the weekend, if you have some spare time that is. Women: join the FIRST online Salesforce developer user group! This year at TrailheaDX, I had the honor of bumpi...
Saleforce Mobile SDK and Ionic - Update Mobile SDK

Saleforce Mobile SDK and Ionic - Update Mobile SDK

Brett M. Nelson - Thursday, July 13, 2017

The other day they released a new update for the Salesforce Mobile SDK.   Let' take a look at what it takes to update versions. Install Updated Forcedroid First thing we should do is upgrade our Fo...
Saleforce Mobile SDK and Ionic – Create Contacts Provider

Saleforce Mobile SDK and Ionic – Create Contacts Provider

Brett M. Nelson - Wednesday, July 12, 2017

Last time we added a Contacts page.  And while it loads it doesn't show anything yet.  We could add all the logic for talking to Salesforce in the controller for the view like we did with the Home ...
Saleforce Mobile SDK and Ionic – Create Contacts Page

Saleforce Mobile SDK and Ionic – Create Contacts Page

Brett M. Nelson - Tuesday, July 11, 2017

We now have a working app that can get data from Salesforce!  Let's start customizing it to suit our needs.  In this case that means we will load up a list of Contacts.  Since Contacts seems like i...
Saleforce Mobile SDK and Ionic – Adding Ionic to Mobile SDK – Part IV

Saleforce Mobile SDK and Ionic – Adding Ionic to Mobile SDK – Part IV

Brett M. Nelson - Monday, July 10, 2017

We have an app that has both the Salesforce Mobile SDK and the Ionic Framework and it runs!  Before we can really call it a success we should get it to list the users for the Org similar to the app...

Around the Web – 20170707

Brett M. Nelson - Friday, July 7, 2017

And now for somethings to read over the weekend, if you have some spare time that is. Consuming Platform Events in 10 Lines of JavaScript Platform Events are a fantastic new feature that can now be...

Saleforce Mobile SDK and Ionic – Adding Ionic to Mobile SDK - Part III

Brett M. Nelson - Thursday, July 6, 2017

Over the last few posts we have integrated our Ionic Framework app into our Salesforce Mobile SDK app.  All that's left now is to run it.... after a few more things NPM Install You may be thinking ...