Lookup filter in Salesforce
Lookup filter is used to filter records when we lookup for the records. Used in Lookup dialogs. When the child records are created, we select the Parent records. During the ....
Lookup filter is used to filter records when we lookup for the records. Used in Lookup dialogs. When the child records are created, we select the Parent records. During the ....
Sample Code: Visualforce page: <apex:page controller="HideAndShow" sidebar="false" showHeader="false" ><apex:form ><p style="font-weight:800; color:#4C0000;"> Click the buttons below to experiment Hide and Show.</p> <apex:pageBlock title="Block A" rendered="{!abool}"> This is Block A.<br/><br/> </apex:pageBlock> ....
Multiple ids should be used in the reRender attribute to Rerender multiple sections in VisualForce page. Sample Code: Visualforce page: <apex:page controller="SampleVisualforcePageController"> <apex:form > <apex:pageblock > <apex:pageblockSection id="membersBlock" title="Member Details" > ....
In the above Formula field(Country Code), if the the Country picklist value is 'India', then Country code will be 'IND', else if the the Country picklist value is 'United States ....
Sample Code: Visualforce Page: <apex:page controller="sample" sidebar="false" ><apex:form > <apex:pageblock > <apex:pageblockTable value="{!code}" var="c"> <apex:column value="{!c.Name}"/> <apex:column value="{!c.Code__c}"/> </apex:pageblockTable> </apex:pageblock></apex:form></apex:page> Apex Controller: public class sample{ public List<CountryCodes__c> code {get;set;} ....
Custom settings are similar to custom objects and enable application developers to create custom sets of data, as well as create and associate custom data for an organization, profile, or ....
"Subtabs of" in Salesforce Lightning and "As a subtab of " in Salesforce Classic is used to decide how records display when they are selected from outside of primary tabs ....
A Service Cloud console is an app that’s designed for users in fast-paced environments who need to find, update, and create records quickly. It improves on the Console Tab by ....
http://ajanya.com/ http://www.allaboutsfdc.com/ http://www.proprofs.com/quiz-school/search.php?search=dev+401
Sample Code: Visualforce page: <apex:page controller="Sample" sidebar="false" ><apex:pagemessages /><apex:form > <apex:pageblock > <apex:pageBlocksection > <apex:pageblockSectionItem >Name:</apex:pageblockSectionItem> <apex:pageblockSectionItem ><apex:inputtext value="{!nam}" /></apex:pageblockSectionItem> <apex:pageblockSectionItem >Age:</apex:pageblockSectionItem> <apex:pageblockSectionItem ><apex:inputtext value="{!age}" /></apex:pageblockSectionItem> ....