Pages
(Move to ...)
Home
Java
Android
Php
Cake PHP
jQuery
Grails
All Pages
▼
Thursday, July 28, 2016
Salesforce : DML currently not allowed
›
If you write create/update/delete operation in apex controller constructor then this error would be thrown. You have to do some trick to g...
Monday, July 25, 2016
Parse JSON in Salesforce
›
public class CommonJsonParser { public cls_Parent [] parentList ; class cls_Parent { public Integer intType ...
Git: comparing remote branches, different between two remote branches
›
git diff --name-status origin/master...remotes/origin/2.0.0 git diff master remotes/origin/2.0.0 -- app/../File.name
Tuesday, July 19, 2016
Salesforce :: Can not add Visual Force page to Custom button
›
1. At first create a custom controller (Apex Class) with following contents: public with sharing class CommonController { pr...
Monday, July 18, 2016
Salesforce create custom controller
›
1. Go to "setup/Develop/Apex Classes" and click "new" 2. Write the following code: public class CustomControll...
Show HTML string as an HTML output instead of plain text in Salesforce Visaul Force page
›
Write the following code snippet: <apex:outputLabel escape= "false" Value= "{!html}" ></apex:outputL...
How to make a post or get request to some other server from apex class
›
1. Go to "setup/Develop/Apex Class" 2. Click "new" 3. Write code as following: public class ApexClass_1 { ...
‹
›
Home
View web version