I need to reference a parameter submitted via a post request that in turn renders a skuid page. If I use the approach of calling a visualforce page that includes the skuid:page component, I can initialize a javascript variable like so:
<apex:page docType=“html-5.0” readOnly=“true” Controller=“NewCampaignFromMapController” showheader=“false” sidebar=“false”>
<skuid:page page=“ServiceCampaignWizard”/>
</apex:page>
However, I would prefer to bypass rendering the visualforce page, and just call the skuid page directly. However, I cannot seem to find a way to get the IdArray parameter and initialize it within a snippet. I’ve tried using skuid.page.parameters.IdArray, but it comes back undefined.