


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
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
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
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
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
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
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...