Displaying Interviewers

Once again, create the final page of your wizard in the controller code.

This time, add two new elements to your controller code, and handle them slightly differently in your Visualforce page.

1.
Return to edit the custom controller through the Setup Develop Apex Code choice, and then click Edit for the controller class.
2.
Add the following code to the controller class:
public Interview__c intDate { get { if(intDate == null) { intDate = new Interview__c(); } return intDate; } set; } public List<Interview__c> jobApplicationInterviewers ...

Get The Developer’s Guide to the Force.com Platform now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.