Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zachelrath/5809344 to your computer and use it in GitHub Desktop.
Save zachelrath/5809344 to your computer and use it in GitHub Desktop.
How to use the <skuid:page> Visualforce component to load Skuid instead of page action method
// If your Visualforce Page currently looks like this:
<apex:page action="{!redirect}&objecttype=Account&actiontype=View" standardController="Account"/>
// Change it to look like this:
<apex:page standardController="Account" readonly="true" doctype="html-5.0">
<skuid:page objectType="Account" actionType="View"/>
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment