[SalesForce] Customise Buttons on Global Action

I've created a global action that pulls up content from a VF page inside of Salesforce1, triggered by viewing a record, clicking + and then clicking on the custom icon.

The page displays fine, except that it always has an active 'Cancel' button and a greyed out 'Submit' button. I simply want a 'Back' button there instead, which would go back to the record regardless of any VF navigation the user performs. Is this possible or will I have to wait for a future update?

Best Answer

As of Summer '15 you can hide the header in Visualforce custom actions by setting the showQuickActionVfHeader attribute to false (see the Summer '15 Release Notes).

So you could hide the buttons and then add a "back" button in your VF page that basically does the same thing as cancelling. Not perfect, but at least less confusing for the end user.

Related Topic