You need to sign in to do that
Don't have an account?
Issuse while deploying visualforce dynamic component through change set
Hi ,
Am getting the following error when deploing from sandox to production through changeset.
Please help me in resolving this.
Error:
Case controller :Invalid type: Component.Support.CaseFeed
caseview page :Unknown property 'CaseStandardController.casePage'
<apex:page standardController="Case" extensions="casecontroller" showHeader="true" sidebar="false"
action="{!redirect}">
<apex:dynamicComponent componentValue="{!casePage}" rendered="{!isCaseFeedEnabled}"/>
<apex:outputpanel rendered=" " >
</apex:page>
public with sharing class casecontroller {
//
//
public Component.Apex.OutputPanel getCasePage(){
Component.Apex.OutputPanel panel = new Component.Apex.OutputPanel();
Component.Support.CaseFeed caseFeed = new Component.Support.CaseFeed();
caseFeed.caseId = c.Id;
panel.childComponents.add(caseFeed);
return panel;
}
}
Can you please check whether case feed in enable in your production org?
Please follow link to enable it: https://help.salesforce.com/HTViewHelpDoc?id=case_interaction_enabling.htm&language=en_US
Thanks.I missed it