by Chintan Shah | Jan 3, 2020 | Salesforce
When we create lightning component and associate with button, it has configurable height but width is always half of the screen. E.g. lightning component 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 <!-- - Created by Chintan Shah on 10/20/2019....
by Chintan Shah | Oct 21, 2019 | Salesforce
I know it has been around for a long time, but recently found this useful feature, where I can request the logs of all emails that has been sent. It can be super useful for troubleshooting. It would be nice to have some heroku app which can download this periodically...
by Chintan Shah | Oct 21, 2019 | Salesforce
As Salesforce has introduced powerful mock framework for testing, we wrote thin layer on top of it to take full advantage of the dynamic mock class that you can create. It is always a good practice to break down your classes, and methods into small chunks, and mostly...
by Chintan Shah | Oct 14, 2019 | Salesforce
As mentioned in my previous blog : https://chintanblog.blogspot.com/2017/05/odataheroku-with-salesforce-integrate.html , if we can expose the external data as OData 2.0 or 4.0, we can directly consume them in salesforce as External Objects. The second option would be...
by Chintan Shah | Oct 14, 2019 | Salesforce
When calling web service from lightning component, we can either call it from apex using @AuraEnabled method, or we can call from lightning component client side controller. This is specially important when you want to avoid governor limits on Apex side, e.g....
by Chintan Shah | Jul 18, 2019 | Salesforce
by Chintan Shah | Jul 9, 2019 | Salesforce
Nothing new, just short summary on platform cache : To over simplify, Platform cache is glorified hash map. Platform cache is first divided into different partitions. These are hard partition, cache usage in one partition will not overflow in another partition....
by Chintan Shah | Jun 26, 2019 | Salesforce
Problem Statement A visual force page is embedded inside the standard page layout to display additional information from the third-party application as below. A few use cases :– Let’s say there is change inside third-party application content and we want...
by Chintan Shah | Jun 20, 2019 | Salesforce
When we had some SOSL in managed package An internal server error has occurred An error has occurred while processing your request. The salesforce.com support team has been notified of the problem. If you believe you have additional information that may be of help in...
by Chintan Shah | May 31, 2019 | Salesforce
Below is how internally OpenText Content Widget loads different resources from Content server and renders the widget. Here, we can see csui-base.css is downloaded from csui.js using helper.js. jquery-ui.css which imports original.css and adjustment.css has majority of...