Skip to main content

Quick question:  I need to a pass a parameter to a Skuid page embedded in a Visualforce page.  I can't find how to do this.

I think Skuid just reads the browser Parameters so in your page controller just add Page Parameters with Apex in the controller like this:

PageReference.getParameters().put(‘id’, myID);


Also, Look here for a write up
http://help.skuidify.com/m/page-assignments-and-overrides/l/201793-using-the-skuid-page-visualforce-…


Reply