Apex · Lightning · Report

Displaying standard report data in Lightning component

Sometime we might end up the slow performance of showing custom charts by querying the object data- if the data is in millions. The best way to improve the performance is by creating a standard report and getting data of report to apex with ReportManager class. we can also pass the filter values based on… Continue reading Displaying standard report data in Lightning component

CDC · Uncategorized

Change Data Capture Events in Salesforce – Keep your UI Updated with latest data

Change Data Capture(CDC) events :- This is still a new term in Salesforce world . Do you know how powerful it is ? If not read this post and learn CDC events Have you ever faced the issue when you are viewing the record and at the same time other user has modified the same… Continue reading Change Data Capture Events in Salesforce – Keep your UI Updated with latest data

Lightning · Salesforce · Salesforce Releases

Usage of Spring ’19 component — lightning:unsavedChanges

Accidents are commonplace! And yeah, Spring  ’19 has come up with a new component lightning:unsavedChanges. Voila!! We often come across situations where we type in data and then we accidentally refreshes, closes the page or press back button and all the entered data is lost!!  lightning:unsavedChanges  comes in to help here! It notifies the user… Continue reading Usage of Spring ’19 component — lightning:unsavedChanges

Integration · Lightning · Salesforce

Salesforce Integration with WordPress

This post will help you to integrate Salesforce with WordPress and access the blogs in Salesforce from WordPress. Here we are getting the blog from a linked WordPress account and displaying it in a lightning modal popup in Salesforce. Steps to be implemented: 1. Create an app in WordPress application manager [create App]. Redirect URL… Continue reading Salesforce Integration with WordPress

Lightning · Salesforce · Web Design

Lightning Reusable Carousel component

Carousels are often thought of as an easy solution to provide better navigation to all the important content/offers on the site. It is used to highlight important information and engage the customers on the go. It is often a hurdle for developers to include a carousel in the code. Here I have written a reusable… Continue reading Lightning Reusable Carousel component

Apex · Lightning · Salesforce

Handling Exceptions in Lightning using AuraHandledExceptions

Exceptions are bad unless we know what actually caused them. My personal experience with exceptions has always been quite bad. It becomes worse if you are working with Lightning Components. Errors happen. Sometimes they’re expected, such as invalid input from a user, etc. and sometimes they just appear out of the blue, leaving you clueless.… Continue reading Handling Exceptions in Lightning using AuraHandledExceptions

Lightning · Salesforce · UI/UX

Lightning Experience: Salesforce Summer ’18 Release

The Summer ’18 release delivers more personalized and integrated customer journeys while enabling your team to work smarter with new levels of data insight across your org. This blog offer a high-level information of some of the major enhancements and features of Summer’18 release. 1.New Lightning Components  The following components are new and require API… Continue reading Lightning Experience: Salesforce Summer ’18 Release

Lightning · Salesforce

Dynamic Reusable Lightning Table Component

Don’t Repeat Yourself (DRY) is a principle of software development aimed at reducing repetition of software development patterns. Most of the time we will find creating same kind of Component for different object over and over again. To over come this we have created Dynamic reusable lightning component. Github Link : https://github.com/gokulrajanoff/dynamic-table- This component is… Continue reading Dynamic Reusable Lightning Table Component