I'm looking to create a single list of records of various sObject types using apex to display to a custom visualforce page. I'm wondering if there is a way to combine multiple objects (case, opportunity, account, etc) within a single list. If not, how do you append the second object to the first in a list using visualforce code? Is there a best practice?

Thanks


So I could use a little more assistance completing this. I have written this:

public class MyController {

    public List<ContactAndCase> ContactsAndCases { get; set; }

    public Opportunity TheOpp{
        get {
        TheOpp = [select Id FROM Opportunity];
        return TheOpp;
        }
        set;
     }
     public Case TheCase{
        get {
        TheCase = [select Id FROM Case];
        return TheCase;
        }
        set;
     }
} 

How do I fill the ContactsAndCases List?

link|improve this question

41% accept rate
feedback

3 Answers

A VisualForce component iterates over a single list. The type of the List, e.g. List<Lead>, dictates what data can be rendered by a VF component.

In order to render Lists of different types, you can either have a separate VF component for each type, e.g.:

<apex:pageBlockTable value="{!contacts}" var="contact">
...
</apex:pageBlockTable>
<apex:pageBlockTable value="{!cases}" var="case">
...
</apex:pageBlockTable>

Or, you can create a new type which holds instances of the different types. Here's a controller example:

public class MyController {
    public List<ContactAndCase> ContactsAndCases { get; set; }

    public MyController() {
        ContactsAndCases = new List<ContactAndCase>();
        // populate ContactsAndCases list
    }

    public class ContactAndCase {
        public Contact TheContact { get; set; }
        public Case TheCase { get; set; }
    }
}

Then, you can iterate over a List<ContactAndCase>:

<apex:pageBlockTable value="{!ContactsAndCases}" var="item">
    <apex:column value="{!item.TheContact.LastName}" />
    <apex:column value="{!item.TheCase.CaseNumber}" /> 
</apex:pageBlockTable>
link|improve this answer
Thanks for your help. I'm not quite getting this right though. Can you clarify the second option please? – Havoc783 Nov 16 '11 at 20:30
I added a controller and made the ContactAndCase class an inner class of the controller. Does this make sense? – Jeremy Ross Nov 16 '11 at 20:38
Thanks again. I'm starting to get it. I'm hung up on the get set vs. using a query to populate a list. I'm thinking I want to use a few queries to populate a list, and then display that list. Could you please clarify? – Havoc783 Nov 16 '11 at 21:17
I took a stab at my own problem. It compiles, but doesn't present anything to the screen. Any ideas? – Havoc783 Nov 16 '11 at 22:03
Apex properties (get and set) have nothing to do with where the data comes from. You still probably want to do a couple of queries to get your Contact and Case records, or whatever Objects you want to display. – Jeremy Ross Nov 17 '11 at 2:24
show 1 more comment
feedback

Jeremy's wrapper class is what you want. In addition, you'll generate SOQL-based lists of the objects you want first and then loop through to create new wrapper instances for your wrapper list (ContactsAndCases in this case) containing values from both contacts and cases.

link|improve this answer
feedback

Maybe I am missing something but couldn't you simply collect them in:

List<SObject> objects = new List<SObject>();  

You can then add any generic SObject into that list.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.