Hi,
We are attempting to use the skuid page component from a visual force page to load a page, but we are trying to set a page parameter on the skuid page and it is giving us an error.
Using this code below works:
<apex:page
standardController=“Contact”
extensions=“skuid.Redirects”
showHeader=“false”
sidebar=“false”
readonly=“true” docType=“html-5.0”
action=“{!IF(canUseSkuid,‘’,redirect)}”
title=“TestPage”>
<skuid:page page=“TestPage” />
</apex:page>
But if we change the skuid page to
<skuid:page page=“TestPage&contactid={$Contact.Id}”/>
or any other parameter we set, it gives a skuid error and says the page does not exist. We are not sure how else to try to set the page parameters and pass the values we need to to the skuid page.
Thank you!