So I have a report I wrote as a skuid page.
which expects a url parameter
I included it in a visualforce page (because I want it to display as a pdf)
<apex:page renderAs=“pdf” showheader=“false” sidebar=“false” docType=“html-5.0” title=“ACME Recruiting - Home”>
<skuid:page page=“Client_Encounter_Notes” /></apex:page>
how can i pass the url parameter through to the included skuid page. Even when I put the parameter in the url the PDF is blank ?
do i have to write some sort of controller extension ?