What is a related list in Salesforce?
Related lists display records linked to the current record being viewed. Salesforce Lightning Experience: Salesforce Classic:
Related lists display records linked to the current record being viewed. Salesforce Lightning Experience: Salesforce Classic:
Collection of fields related to a specific item displayed on a detail page.
Go to My Settings --> Display & Layout --> Customize My Pages.
Similar to the way functions work in a programming language, custom Visualforce components allow you to encapsulate common design patterns and then reuse those patterns in one or more Visualforce ....
Easy to use Easy to set up Click to customize No software hassles Security you can count on Cheers!!!
Account Customers, competitors, and partners. Each account stores information such as name, address, and phone numbers. Accounts are companies that you're doing business with.Information about an organization. Contact Individuals associated with ....
Customer relationship management (CRM) is a bridge between Organization and the customers. CRM defines how an Organization manages its customers. CRM is a model for managing a company’s interactions with ....
Sample Code: <apex:page showHeader="false" controller="Sample" ><apex:form > <apex:panelGrid columns="1" style="float:right;"> <apex:commandButton value="One"/> <apex:commandButton value="Two"/> <apex:commandButton value="Three"/> <apex:commandButton value="Four"/> <apex:commandButton value="Five"/> </apex:panelGrid></apex:form> </apex:page> Output:
To hide "Reset my Security Token" option in Salesforce, add IP ranges to the profile. If the Login IP Ranges are set, Security Token is not needed.
Sample Code:Visualforce page:<apex:page showHeader="false" controller="Sample" ><apex:form > <apex:pageBlock > <apex:pageblockTable value="{!EmpList}" var="E"> <apex:column value="{!E.Name}"/> <apex:column value="{!E.Photo__c}"/> </apex:pageblockTable> </apex:pageBlock></apex:form> </apex:page>Apex Controller:global class Sample { public List<Employee__c> EmpList {get;set;} public ....