How to avoid IE10 version compatibility issue while using Visualforce Page Please add following piece of code in your Apex Class Controller Consturctor Apexpages.currentPage().getHeaders().put(‘X-UA-Compatible’, ‘IE=10’); You could try this with …
APEX
- APEXSALESFORCEVisual ForceVisualforce
- APEXSALESFORCESalesforce.comSOQL
How to get the Salesforce Account Object Address details using SOQL?
How to get the Salesforce Account Object Address details using SOQL? Salesforce Account Objects Contains Two Address fields and Account and geolocation its seems like a compound fields. 1) Billing …
- APEXSALESFORCESalesforce CustomizationSOQL
How do get the Recently Viewed items using Soql Apex Class
How do get the Recently Viewed items using Soql Apex Class. As per the new Summer ’13 Release salesforce introduced the new Standard Object called RecentlyViewed, so using that we can …
-
Best Video about Apex Pattern and best practices Includes the following items: – StandardSetController & Standard Controller, Extension, Custom Controller – Context overload pattern – Apex Batch Jobs & Limitaion
- APEXJAVASCRIPTSALESFORCEVisual ForceVisualforce
Javascript confirm alert popup using Visualforce page and Apex Class
Javascript confirm alert popup using Visualforce page and Apex Class Below is the example of how to generate the confirm alert popup using Visualforce page and Apex Class. in the …
- APEXMobileSALESFORCEVisual ForceVisualforce
How to redirect the visualforce page based on the mobile user or browser user in salesforce
How to redirect the visualforce page based on the mobile user or browser user in salesforce its possible to redirect the visualforce page either mobile page view or normal browser …
-
how to check the page is loaded in mobile or browser using Apex Class its achievable with the help of “User-Agent” header properties like below: String userAgent = ApexPages.currentPage().getHeaders().get(‘User-Agent’); …
- APEXAPIIntegrationSALESFORCESoapWeb Service
Listing the issues while generating the apex class from WSDL Document in salesforce
Listing the issues while generating the apex class from WSDL Document in salesforce It’s difficult to connect to external webservices without the following basic features. 1) Salesforce doesn’t support the …
-
something like this, assuming updating an account is what triggers your code above. global class Trades_CascadeAccountsBatchable implements Database.Batchable<sObject>, Database.Stateful { /*run this batch the first time with this Database.executeBatch(new Trades_CascadeAccountsBatchable(‘SELECT …
-
How to convert from 18 Digit Salesforce ID to 15 Digit ID Using Apex Class Its possible to convert from 18 Digit Salesforce ID to 15 Digit ID Using String …