#Cordova IonicFramework Salesforce SalesforceDeveloper
Explore tagged Tumblr posts
Text
Salesforce Mobile SDK and Ionic – Offline – SmartStore Saving Data
Since we have setup our SmartStore Soup we should probably store something in it so it can start providing value… or values. Populate SmartStore Soup To get things started we are going to store the some contact information. Instead of writing something new to get contacts from Salesforce we can import our contact-service import ContactsServiceProvider import { ContactsServiceProvider … Continue reading Salesforce Mobile SDK and Ionic – Offline – SmartStore Saving Data → https://wipdeveloper.com/2017/12/13/salesforce-mobile-sdk-and-ionic-offline-smartstore-saving-data/
0 notes
Text
Salesforce Mobile SDK and Ionic – Offline – SmartStore Setup
Since we are going to be saving some data offline we should start by creating a SmartStore for our data. SmartStore Setup Before we setup SmartStore we should know a couple things. Each SmartStore database or cache is called a Store. Stores contain partitions of our data called Soups. We can create Soups without specifying … Continue reading Salesforce Mobile SDK and Ionic – Offline – SmartStore Setup → https://wipdeveloper.com/2017/12/11/salesforce-mobile-sdk-and-ionic-offline-smartstore-setup/
0 notes
Text
Salesforce Mobile SDK and Ionic – Offline – Intro
One of the main reasons a mobile app would be preferred over a website is the ability to function offline. With people on the go with variably reliable internet connections this can be a big concern. Luckily we haven’t been building a website so we can deal with this using the tools that the Salesforce … Continue reading Salesforce Mobile SDK and Ionic – Offline – Intro → https://wipdeveloper.com/2017/12/04/salesforce-mobile-sdk-and-ionic-offline-intro/
0 notes
Text
Salesforce Mobile SDK and Ionic – Remote Hybrid App – Update without Rebuilding
One of the reason to build a Remote Hybrid app is so that you can make changes to it without having to rebuild and resubmit it to a store. Since the main view is a Visualforce page we can make changes to it in Salesforce and see them instantly in our app. Update the Visualforce … Continue reading Salesforce Mobile SDK and Ionic – Remote Hybrid App – Update without Rebuilding → https://wipdeveloper.com/2017/11/29/salesforce-mobile-sdk-and-ionic-remote-hybrid-app-update-without-rebuilding/
0 notes
Text
Salesforce Mobile SDK and Ionic – Remote Hybrid App – RemoteActions Part 4
With our newly added class of Contact we should be able to find any issues that will arise from switching to Remote actions. See the errors yet? If you are using an editor like VisualStudio Code you can look in the “Problems” tab/window to see any issues our new definitions have caused. Problems If you are … Continue reading Salesforce Mobile SDK and Ionic – Remote Hybrid App – RemoteActions Part 4 → https://wipdeveloper.com/2017/11/28/salesforce-mobile-sdk-and-ionic-remote-hybrid-app-remoteactions-part-4/
0 notes
Text
Salesforce Mobile SDK and Ionic – Remote Hybrid App – RemoteActions Part 3
Since we have updated our contacts-service to use RemoteActions instead of ForceJS we will have to make a couple changes to our app to make use of the results of the RemoteActions since they are not formed the same as when the requests go through ForceJS. Find What to Fix First thing we will need … Continue reading Salesforce Mobile SDK and Ionic – Remote Hybrid App – RemoteActions Part 3 → https://wipdeveloper.com/2017/11/27/salesforce-mobile-sdk-and-ionic-remote-hybrid-app-remoteactions-part-3/
0 notes
Text
Salesforce Mobile SDK and Ionic – Remote Hybrid App – RemoteActions Part 2
Since we have setup our ContactMobileAppController we should change our ContactsServiceProvider to make use of those RemoteActions. Update ContactsServiceProvider Since our app was a working copy of a Local Hybrid app we already have a service provider in place that works. Because of this we will not create a new one. Instead let’s modify it so that … Continue reading Salesforce Mobile SDK and Ionic – Remote Hybrid App – RemoteActions Part 2 → https://wipdeveloper.com/2017/11/20/salesforce-mobile-sdk-and-ionic-remote-hybrid-app-remoteactions-part-2/
0 notes
Text
Salesforce Mobile SDK and Ionic – Remote Hybrid App – RemoteActions
If you’ve been following along you should have a working app that looks and behaves the same as the Local Hybrid app we had. At this point you may be wondering why we would choose to go with a Remote Hybrid app over the Local Hybrid app. Well since our Remote Hybrid app uses a … Continue reading Salesforce Mobile SDK and Ionic – Remote Hybrid App – RemoteActions → https://wipdeveloper.com/2017/11/17/salesforce-mobile-sdk-and-ionic-remote-hybrid-app-remoteactions/
0 notes
Text
Salesforce Mobile SDK and Ionic – Remote Hybrid App – Fix Styles
Previously we ran our Remote Hybrid app and it had all the functions of our Local Hybrid app but something didn’t look quite right. The styling was off! Let’s take a quick look and see what may have caused this. The Issue If you look at our current Remote Hybrid app it’s a little off … Continue reading Salesforce Mobile SDK and Ionic – Remote Hybrid App – Fix Styles → https://wipdeveloper.com/2017/11/08/salesforce-mobile-sdk-and-ionic-remote-hybrid-app-fix-styles/
0 notes
Text
Salesforce Mobile SDK and Ionic – Remote Hybrid App – Add Ionic
Last time we set up our Visualforce page and a Remote Hybrid app. Now we just need to add all the local assets for out app. Adding Local Assets Adding the local assets is going to be pretty easy if you have been following along. We will be copying and pasting the contents of our … Continue reading Salesforce Mobile SDK and Ionic – Remote Hybrid App – Add Ionic → https://wipdeveloper.com/2017/11/06/salesforce-mobile-sdk-and-ionic-remote-hybrid-app-add-ionic/
0 notes
Text
Salesforce Mobile SDK and Ionic – Setup Remote Hybrid App
Since we covered the difference between a Remote and a Local Hybrid app let set up our Remote Hybrid app. Create Visualforce Page One things we will need is a Visualforce page to load inside our app. I’m going to call my new page ContactsApp and we will set the docType to html-5.0, showHeader to false, and sidebar to … Continue reading Salesforce Mobile SDK and Ionic – Setup Remote Hybrid App →
The post Salesforce Mobile SDK and Ionic – Setup Remote Hybrid App appeared first on WIP Developer.com.
https://wipdeveloper.com/2017/10/16/salesforce-mobile-sdk-ionic-setup-remote-hybrid-app/
0 notes
Text
Salesforce Mobile SDK and Ionic – Local vs Remote
If you have been following along you know we created a mobile app that allowed us access to contacts that are in our Salesforce Org. That app could be deployed to an app store such as Google Play or the Apple App Store. And since we used Cordova to build it with HTML, CSS and … Continue reading Salesforce Mobile SDK and Ionic – Local vs Remote →
The post Salesforce Mobile SDK and Ionic – Local vs Remote appeared first on WIP Developer.com.
https://wipdeveloper.com/2017/10/09/salesforce-mobile-sdk-ionic-local-vs-remote/
0 notes
Text
Salesforce Mobile SDK and Ionic – Plugins Part III
Now that we have done all the setup steps to install and provide easier access a plugin using it should be easier. Let’s set up our app to provided a way to email a contact from the action sheet on the Contact Details page. Update Contact-details.ts To get access to the plugin we will need … Continue reading Salesforce Mobile SDK and Ionic – Plugins Part III →
The post Salesforce Mobile SDK and Ionic – Plugins Part III appeared first on WIP Developer.com.
https://wipdeveloper.com/2017/10/02/salesforce-mobile-sdk-ionic-plugins-part-iii/
0 notes
Text
Salesforce Mobile SDK and Ionic – Plugins Part II
Since we already covered what a plugin was we should try to implement it in our app. One this we may want to do is send an email to a contact from our app without having to enter the email address. We can do this by calling the default mail client and populating the address, subject … Continue reading Salesforce Mobile SDK and Ionic – Plugins Part II →
The post Salesforce Mobile SDK and Ionic – Plugins Part II appeared first on WIP Developer.com.
https://wipdeveloper.com/2017/09/11/salesforce-mobile-sdk-ionic-plugins-part-ii/
0 notes
Text
Salesforce Mobile SDK and Ionic – Plugins
One of the main benefits of creating an app to be installed on a device is you get to access device specific features. What is a “Device Specific Feature” you say? Well, good question. Device Specific Feature A Device Specific Feature is a capability or feature built into a device through a combination of it’s … Continue reading Salesforce Mobile SDK and Ionic – Plugins →
The post Salesforce Mobile SDK and Ionic – Plugins appeared first on WIP Developer.com.
https://wipdeveloper.com/2017/09/04/salesforce-mobile-sdk-ionic-plugins/
0 notes
Text
Salesforce Mobile SDK and Ionic – Pull to Refresh
Now that we have the modal closing properly when editing a contact you may have noticed that the Contacts displayed on our Contacts page are not updated when we return to it from the Contact Details page. To make it so we can refresh the list on Contacts without using the navigation menu to re-navigate to … Continue reading Salesforce Mobile SDK and Ionic – Pull to Refresh →
The post Salesforce Mobile SDK and Ionic – Pull to Refresh appeared first on WIP Developer.com.
https://wipdeveloper.com/2017/08/30/salesforce-mobile-sdk-ionic-pull-refresh/
0 notes