Visualforce for Beginners
Visualforce Basics What is Visualforce? It is a web development framework. Developers can make complex UI both for mobile and desktop which can be hosted on forc.com environment. Visualforce provides access to Salesforce inbuilt features and enables us to extend them and introduce a new or custom functionality. There are some powerful features enabled in visualforce like standardcontroller with help if with we can create awesome new apps from scratch. That’s enough for the background lets dive into coding. Sample Visualforce code: <apex:page standardController=”account” > <apex:form > <apex:pageBlock > <apex:pageBlockSection columns=”1″> <apex:inputField value=”{! account.FirstName}”/> <apex:inputField value=”{! account.LastName}”/> </apex:pageBlockSection> <apex:pageBlockButtons > <apex:commandButton action=”{!save}” value=”Save”/> </apex:pageBlockButtons> </apex:pageBlock> ...