• rvader
  • NEWBIE
  • 0 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies
I am extending a VF page which resides in a managed packaged. 
code is as follows:

<apex:page controller="myController" showHeader="false" sidebar="false" >
<apex:include pageName="ManagedPackage__managedPage" />
...
</apex:page>

the purpose of myController is simply to inject some javascript remoting into the managed page.

when this page renders, I get the following error:
Apex class 'ManagedPackage.myController' does not exist

the apex:page resides in the default namespace as does the custom myController. why is the page then attempting to reference myController in the managed package namespace. how do I coerce it to refer to the custom controller in the default namespace?
  • September 02, 2014
  • Like
  • 0
I am extending a VF page which resides in a managed packaged. 
code is as follows:

<apex:page controller="myController" showHeader="false" sidebar="false" >
<apex:include pageName="ManagedPackage__managedPage" />
...
</apex:page>

the purpose of myController is simply to inject some javascript remoting into the managed page.

when this page renders, I get the following error:
Apex class 'ManagedPackage.myController' does not exist

the apex:page resides in the default namespace as does the custom myController. why is the page then attempting to reference myController in the managed package namespace. how do I coerce it to refer to the custom controller in the default namespace?
  • September 02, 2014
  • Like
  • 0

Hi,

 

In a visualforce I used an autocomplete feature (in JQeury) for an input field and that works great.

It's based on a remote action define in my controller which is called by the javascript.

 

Now, I want to put my visualforce in an apex iframe but when the frame is shown, the warning message : "Javascript proxies were not generated for controller myController : may not use public remoted methods inside an iframe".

And my apex remote action is of course never called.....

 

Do someone has an idea to resolve that ?

 

Thanks in advance for your help.

 

 

  • November 21, 2011
  • Like
  • 0