function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
geetha charangeetha charan 

How to make a visualforce page available for offline to use it in Mobile App(hybrid) build with the salesforce SDK?

I am developing a Hybrid Mobile application using Salesforce Mobile SDK. I want to make the visualforce page available in my offlilne mode also.

Can someone guide me how to make a visualforce page work offline any guides or videos.
Best Answer chosen by geetha charan
bob_buzzardbob_buzzard
You can't make a Visualforce page available in the mobile SDK - there is no local Visualforce server to provide the page.  If you want to go offline your application has to be entirely constructed using elements that are supported by the mobile SDK (phonegap/cordova), which means HTML/CSS and JavaScript.  The best you can do with Visualforce is HTML5 offline, but any data that you store for offline access won't be secure.