Create a Visualforce Email template by navigating toSetup –> Communication Templates –> Email Templates –> New TemplateSelect “Visualforce” in the first step… Give a tilte,name,Subject for your template. Next select …
Visual Force
-
-
Using custom components makes lots of stuff possible. Here’s an example of a year-end giving thank you email:This shows all gifts for 2008 and attaches a PDF of the giving …
-
Three tags to create VisualForce email template1) – in which you specify recipient type, relatedToType, subject and email address that they can reply back to.2) – in which you define …
-
Error : Maximum view state size limit (135KB) exceeded. Actual view state size for this page was 410.891KB. Step 1: This will occurs when the variable is u …
-
Salesforce.com implemented CKEditor as the WYSIWYG editor of choice for their Rich Text Area fields, but as you may have noticed, the native editor doesn’t support things like direct editing of html, font …
-
- APEXCKEditorIntegrationSalesforce.comVisual Force
Salesforce Rich Text Editor – Adding Full Mode Features
I ran across Dan Peter’s blog when I was trying expand on the Salesforce Rich Text Field WYSIWYG and I noticed that if you use firebug and look at the iframe used …
-
Example 1: Example 2: Apex Class: public class con { public contact c { get; set; } public con() { c = new contact(); } public void search() { …
-
Apex Class: public class sampleExtension { ApexPages.standardController std = null; public sampleExtension(ApexPages.standardController sc) { std = sc; } public PageReference doCancel() { return …
-
Displaying the check box in a data table or page block table is a general requirement in every project. with the help of wrapper class we can display the checkboxes …