Tuesday, October 16, 2012

Google Translator in Visualforce






2)      Enter your site URL
3)      Click on Next



4)      Click on “Get Code” button


Copy and Paste the above code in the Visualforce page in which you to put the Google Translate languages drop down list.

Treeview in Visualforce using JQuery


Visualforce page code:

<apex:page controller="treeviewcon" sidebar="false" showHeader="false">
<html>
<head>
    <apex:includeScript value="{!URLFOR($Resource.jqueryminjs)}"  />
    <apex:stylesheet value="{!URLFOR($Resource.jquerycss)}"/>
     <apex:stylesheet value="http://jquery.bassistance.de/treeview/jquery.treeview.css"/>
    <apex:includeScript value="http://jquery.bassistance.de/treeview/lib/jquery.js"/>
    <apex:includeScript value="http://jquery.bassistance.de/treeview/lib/jquery.cookie.js"/>
    <apex:includeScript value="http://jquery.bassistance.de/treeview/jquery.treeview.js"/>
    <apex:includeScript value="http://jquery.bassistance.de/treeview/demo/demo.js"/>
  <style type="text/css">
  #browser {
    font-family: Verdana, helvetica, arial, sans-serif;
    font-size: 120%;
    font-weight:bold;
  }
  </style>
  <script>
  $(document).ready(function(){
    $("#browser").treeview();
  });
  </script>
</head>
<body><br/><br/>
<div style="width:300px;margin-left:50px;">
<apex:pageBlock >
  <ul id="browser" class="filetree">
    <apex:repeat value="{!accnts}" var="acc">
    <li class="closed"><span class="folder">{!acc.name}</span>
        <ul>
            <apex:repeat value="{!acc.contacts}" var="c">
            <li><span class="file"><a href="/{!c.id}" target="_blank">{!c.name}</a></span></li>
            </apex:repeat>
        </ul>
    </li>
    </apex:repeat>
   </ul>
   </apex:pageBlock>
   </div>
</body>
</html>
</apex:page>

Controller:

public with sharing class treeviewcon {
    public List<Account> accnts{get; set;}
    public treeviewcon(){
        accnts = [Select id, name,(Select id, name from Contacts) from account];
    }
}

TreeView : 



Wednesday, October 3, 2012

Triggers and Order of Execution



When you save a record with an insert, update, or upsert statement, Salesforce performs the following events in order.

On the server, Salesforce:

1.       Loads the original record from the database or initializes the record for an upsert statement.
2.       Loads the new record field values from the request and overwrites the old values.
If the request came from a standard UI edit page, Salesforce runs system validation to check the record for:
o    Compliance with layout-specific rules
o    Required values at the layout level and field-definition level
§  Valid field formats
§  Maximum field length
Salesforce doesn't perform system validation in this step when the request comes from other sources, such as an Apex application or a SOAP API call.
3.       Executes all before triggers.
4.       Runs most system validation steps again, such as verifying that all required fields have a non-null value, and runs any user-defined validation rules. The only system validation that Salesforce doesn't run a second time (when the request comes from a standard UI edit page) is the enforcement of layout-specific rules.
5.       Saves the record to the database, but doesn't commit yet.
6.       Executes all after triggers.
7.       Executes assignment rules.
8.       Executes auto-response rules.
9.       Executes workflow rules.
10.   If there are workflow field updates, updates the record again.
11.   If the record was updated with workflow field updates, fires before and after triggers one more time (and only one more time), in addition to standard validations. Custom validation rules are not run again.
12.   Executes escalation rules.
13.   If the record contains a roll-up summary field or is part of a cross-object workflow, performs calculations and updates the roll-up summary field in the parent record. Parent record goes through save procedure.
14.   If the parent record is updated, and a grand-parent record contains a roll-up summary field or is part of a cross-object workflow, performs calculations and updates the roll-up summary field in the parent record. Grand-parent record goes through save procedure.
15.   Executes Criteria Based Sharing evaluation.
16.   Commits all DML operations to the database.
17.   Executes post-commit logic, such as sending email.

Additional Considerations
Please note the following when working with triggers:
·         When Enable Validation and Triggers from Lead Convert is selected, if the lead conversion creates an opportunity and the opportunity has Apex before triggers associated with it, the triggers run immediately after the opportunity is created, before the opportunity contact role is created. For more information, see “Customizing Lead Settings” in the Salesforce online help.
·         If you are using before triggers to set Stage and Forecast Category for an opportunity record, the behavior is as follows:
o    If you set Stage and Forecast Category, the opportunity record contains those exact values.
o    If you set Stage but not Forecast Category, the Forecast Category value on the opportunity record defaults to the one associated with trigger Stage.
o    If you reset Stage to a value specified in an API call or incoming from the user interface, the Forecast Category value should also come from the API call or user interface. If no value for Forecast Category is specified and the incoming Stage is different than the trigger Stage, the Forecast Category defaults to the one associated with trigger Stage. If the trigger Stage and incoming Stage are the same, the Forecast Category is not defaulted.
·         If you are cloning an opportunity with products, the following events occur in order:
o    The parent opportunity is saved according to the list of events shown above.
o    The opportunity products are saved according to the list of events shown above.
If any opportunity products contain unique custom fields, you must null them out before cloning the opportunity.
·         Trigger.old contains a version of the objects before the specific update that fired the trigger. However, there is an exception. When a record is updated and subsequently triggers a workflow rule field update, Trigger.old in the last update trigger won’t contain the version of the object immediately prior to the workflow update, but the object before the initial update was made. For example, suppose an existing record has a number field with an initial value of 1. A user updates this field to 10, and a workflow rule field update fires and increments it to 11. In the update trigger that fires after the workflow field update, the field value of the object obtained from Trigger.old is the original value of 1, rather than 10, as would typically be the case.