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

Visualforce learning
I have created fields in teh Resume Object and tried to insert in the VF page and got this error "Unknown property 'Resume.Professional_Experience__c'". Can you please tell me where did I go wrong?
<apex:page controller="Resume" renderAs="pdf">
<apex:pageBlock title="Resume">
<apex:pageBlockTable value="{!Professional_Experience__c}" var="con">
</apex:pageBlockTable>
</apex:pageBlock>
</apex:page>
<apex:page controller="Resume" renderAs="pdf">
<apex:pageBlock title="Resume">
<apex:pageBlockTable value="{!Professional_Experience__c}" var="con">
</apex:pageBlockTable>
</apex:pageBlock>
</apex:page>
As it is custom component It shouls have Resume__c on the controller name.
Please find the below page i created and working as expected.
Replace the field names as per your requirement.
If this solution helps, Please mark it as best answer.
Thanks,
<apex:page controller="Resume__c" renderAs="pdf">
<apex:form>
<apex:pageBlock title="Resumedetails" >
Resumedetails : <apex:inputField value="{!Resume__c.Professional_Experience__c }"/>
<apex:commandButton action="{!save}" value="save"/>
<apex:commandButton action="{!cancel}" value="cancel"/>
</apex:pageBlock>
</apex:form>
</apex:page>
once please follow this link
https://www.tutorialkart.com/visualforce/custom-controller-in-salesforce/
Thanks!!