Skip to main content
Amber Gillis (K2M) a posé une question dans #Mobile
How can I create a SF1 global action that launches a URL?  I see there's an option to do a VF page, but I just want to launch a URL (similar to creating a new web tab).  Thoughts?
9 réponses
  1. 27 mars 2014, 21:14
    Perfect! Here is how I would do this[might get a little long but should be simple]:

     

    1. Create a New Visualforce Page[Setup | Develop | Pages and click New]

    • Label - K2M Page

    • Name - K2M_Page

    • Check the option - Available for Salesforce mobile apps

    • Visualforce Markup:

      <apex:page>

      <apex:iframe

      src="http://www.k2m.com/"

      height="800"

      width="100%"

      scrolling="true"/>

      </apex:page>

    2. Save it

     

    3. Now, create a Visulforce Tab[Setup | Create | Tabs]

    • Click New from Visualforce Tabs

    • Select the Visualforce Page: K2M Page

    • Make sure you check the option - Mobile Ready

    4. Save it

     

    5. Let us now add the same to the Mobile Navigation list[Setup | Mobile Administration | Mobile Navigation]

    • Move our new tab from Available to Selected

     

    You should be good to go!
0/9000