You need to sign in to do that
Don't have an account?
David Roberts 4
EventRelation as a related list
I've been trying to add the attendees as a related list on my custom controlled apex page but can't find a syntax that works.
I get errors like: "'EventRelations' is not a valid child relationship name for entity Event "
<apex:relatedList subject="{!anEvent}" list="EventRelations">
<apex:facet name="header">Attendees</apex:facet>
</apex:relatedList>
where "anEvent" is my event record (public Event in controller) which succesfully returns all the fields of the event in a pageBlock.
Any ideas?
I get errors like: "'EventRelations' is not a valid child relationship name for entity Event "
<apex:relatedList subject="{!anEvent}" list="EventRelations">
<apex:facet name="header">Attendees</apex:facet>
</apex:relatedList>
where "anEvent" is my event record (public Event in controller) which succesfully returns all the fields of the event in a pageBlock.
Any ideas?
CasselJ
Did you ever solve this?