You need to sign in to do that
Don't have an account?

Calling component in VF apex and it changes to lowercase?
Hello,
I have a component MyVFpage with namespace prefix MyVFpage_SF I am trying to create a new VF page for my Projects tab, but everytime I create my VF page and save the page it turns MyVFpage into myvfpage and tells me I need to create the component myvfpage. Why?
code:
once saved returns:
Error: Component c:myvfpage does not exist[Quick Fix] Create Component myvfpage
Is there something I am missing?
I have a component MyVFpage with namespace prefix MyVFpage_SF I am trying to create a new VF page for my Projects tab, but everytime I create my VF page and save the page it turns MyVFpage into myvfpage and tells me I need to create the component myvfpage. Why?
code:
<apex:page standardController="Projects" docType="html-5.0" showHeader="false" sidebar="false" applyHtmlTag="false" applyBodyTag="false"> <c:MyVFpage /> </apex:page>
once saved returns:
Error: Component c:myvfpage does not exist[Quick Fix] Create Component myvfpage
Is there something I am missing?
Try indicating the component namespace:
Regards!
All Answers
Try indicating the component namespace:
Regards!