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
skr00skr00 

anyone worked on Chapter 9 of book "Force.com Developer Guide - Advanced Programming Techniques"

I hv a doubt on Page. 255 regarding the part of code

 

<apex:pageblockTable
value="{!Position__c.Job_Application__r}" var="JA">
<apex:column value="{!JA.Candidate__r.First_Name__c}">
</apex:column>
<apex:column value="{!JA.Candidate__r.Last_Name__c}">
</apex:column>
<apex:column value="{!JA.Candidate_Qualified__c}">
</apex:column>
</apex:pageblockTable>

 

 

as it shows error

 

Definitely i am missing something on below

 

"<apex:pageblockTable value="{!Position__c.Job_Application__r}" var="JA">"

 

Navatar_DbSupNavatar_DbSup

Hi,


I think you have forgot to create either the Object Job Application or Creating a lookup field inside the object
Job Application .

 

Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved. 

 

 

 

 

 

skr00skr00

All the objects are created through code share project as instructed in the book. I have checked all Objects, fields & relations & they seem to be OK for me. Still no clue.

 

Regards,

Pri...