This likely isn’t possible, but I’m desperate so I figured I would ask anyways… I have a skuid page that is wrapped by a VF page so that I can make JS Remoting calls to an apex controller.
<apex:page docType="html-5.0" readOnly="true" controller="MyRemotingController"> <skuid:page page="MySkuidPage" /> </apex:page>
My client wants this page to override the default “view” action for the object. I can get it to override to the SKUID page no problem, but obviously my JS remoting calls don’t work unless on the VF Page. Is there anyway to point your page assignment tool to a VisualForce page instead of the SKUID page? I now realize that I probably should have use Rest API instead of JS Remoting, but the deadline is coming up and there is no going back.