A developer created a Visualforce page and custom controller to display the account type field as shown below. Custom controller code: public class customCtrlr{ private Account theAccount; public String actType; public customCtrlr() { theAccount = [SELECT Id, Type FROM Account WHERE Id = :apexPages.currentPage().getParameters().get('id')]; actType = theAccount.Type; } } Visualforce page snippet: The Account Type is {!actType} The value of the account type field is not being displayed correctly on the page. Assuming the custom controller is property referenced on the Visualforce page, what should the developer do to correct the problem?
Laurene
4 months agoTheodora
4 months agoMila
4 months agoEttie
4 months agoMartha
4 months agoAnnette
5 months agoIn
5 months agoRyann
5 months agoMarquetta
5 months agoRosalind
5 months agoHerminia
5 months ago