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 …
2012
-
-
try{}catch(DMLException e){ for (Integer i = 0; i < e.getNumDml(); i++) { // Process exception here ...
-
- 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 …
- CKEditorIntegrationSalesforce.com
How to convert Salesforce rich text editor to a “full mode” editor?
New CKEditor is object rather than URL based and a new approach is needed. In case anyone needs it, the following script will replace CKEDITOR editor layout with a full …
-
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 …
-
Apex Class: public class checkcontact { public list con {get;set;} public boolean cc{get;set;} public checkcontact() { con=new list(); cc=true; con=[select name,email from contact]; } public void change() { if(cc==false) cc=true; …
-