Last active
December 18, 2015 16:09
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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