Javascript code to reload a page
The below Javascript code is used to reload a page location.reload(true); Cheers!!!
The below Javascript code is used to reload a page location.reload(true); Cheers!!!
Syntax: <apex:inputSecret value="{!inputValue}" id="theSecretInput"/> Example: <apex:inputsecret id="pwd" value="{!pwd}"/>
In order to use apex code to submit the record for Approval process, we have to first create Approval process in Create --> Workflow & Approvals. Sample code: void ....
Visualforce page: <apex:page controller="SearchAcctFromSf" standardStylesheets="true"> <apex:form > <apex:pageBlock > <apex:pageblockSection columns="2" > <apex:outputLabel value="UserName"/> <apex:inputText required="true" id="userName" value="{!userName}" /> <apex:outputLabel value="Password"/> <apex:inputsecret id="pwd" value="{!pwd}"/> ....
Setup --> Customize --> Home --> Home Page Layout. Click Edit button. Uncheck the checkbox to hide it in Home page. Cheers!!!
To display checkbox options in vertical direction, layout property is used. Example: <apex:selectCheckboxes value="{!relObjs}" layout="pageDirection"> <apex:selectOptions value="{!relObj}"/> </apex:selectCheckboxes>
Salesforce to Salesforce connection can be used for data sharing. If an organization is too big and they are using two Salesforce.com organizations to avoid governor limits in Salesforce.com, to ....
To search data in Salesforce using external application, search () method is used. search () Execute a text search in your organization’s data. Use search () to search for records ....
import java.util.Iterator; is used for Iterator usage in Salesforce web service API using JAVA Program. Don't import other Iterator in Web Service API using JAVA Programming language. Cheers!!!
To empty recycle bin data in Salesforce using external application, emptyRecycleBin () method is used. emptyRecycleBin ()Delete records from the recycle bin immediately. The recycle bin lets you view and restore recently ....