[SalesForce] converting visualforce to salesforce1

I am trying to figure out what it will take to convert an existing app to be compatible with Salesforce1. All there really is online is that you need to hit the checkbox on the edit screen of the VF page. What else needs to be considered to make this a user friend Salesforce1 app?

Best Answer

It depends on your customer requirement.

Lets say you want just mobile look and feel then the approach would be to just style your existing page with CSS friendlier to mobile.You may use plugins like jquery mobile ,polymer,bootsrap .

If you want a responsive UI with better perfomance then would redesign controller to use VF remoting or javascript remoting.This will remove viewstate and make your transaction light .You may consider using frameworks like angular , backbone or knockout to manipulate DOM

Related Topic