function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
harshharsh 

apex:component in Managed Package

Hi All,

We created an apex:component in our managed package which consists of  Fileupload field ,submit button,cancel button . and made access type as global for component and attributes.If we test this in our managed package developer org including it in a VF page its working fine and if we test it by adding it in a VF page of managedpackage installed version its working like this: component is loading (calling constructor) and when i click upload/cancel button throwing error :
The installed managed class Cloudrop.fileuploadcomponent is not visible

 

can any one help me out on this!

Jeremy-KraybillJeremy-Kraybill

Mark your class as global.

harshharsh

I already made class and its methods as global .