Step 1 : Lets first create the Apex class
Things to Remember:
Class needs to be a Global class
and the method you intend to call from the javascript must be a WebService Method
e.g.
Global Class RG_LeadConversionCls {
webservice static...
Add or remove standard buttons
1A. For standard objects
i. From Setup, click Customize| then click the object you want to modify | click Search Layouts.
1B. For custom objects
i. From Setup, click Create | then...
Sample Regular Expression for email validation using Apex is given below
if(Pattern.matches('([a-zA-Z0-9_\\-\\.]+)@((\\[a-z]{1,3}\\.[a-z]{1,3}\\.[a-z]{1,3}\\.)|(([a-zA-Z0-9\\-]+\\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})', email)){
//success
}
else{
//error
}
Cheers!!! Enj...
The standard apex:inputfield component for a date field generates a link next to the input field, taking a lot of space. The link allows someone to easily enter the current date. However, when you use multiple date fields within a table component, it can be confusing for the user to have these extra links (see Screenshots). This recipe solves this by creating a Visualforce component that uses CSS...