Skip to main content
HI- we would like to launch a URL from the SF1 app.  I created a Custom URL tab, but it's not available for SF1 mobile navigation.  So, I'm assuming I need to create a VF page with a VF tab (available on SF1). What code would I need to do this?
1 resposta
  1. 14 de mar. de 2015, 18:09
    Hi Amber,

     

    The code that you need to add to the visualforce page is the following:

     

    <apex:page showHeader="false">

     

        <apex:iframe src="http://www.salesforce.com" frameborder="false" height="800px"scrolling="true"/>

     

    </apex:page>

     

    Replace http://www.salesforce.com with the url you need.

     

    Thanks!
0/9000