Lightning · Salesforce

Incorporate SLDS into Javascript Application(Vue.Js)

In this tutorial will set up a basic javascript App(vue.js) and incorporate Salesforce Lightning Design System into it , so we can leverage the font, style and design assets(SVG) of SLDS to build an Application with salesforce look and feel. Initial Setup : 1.Download Vue js CLI using npm(node package Manager). 2. Create Project 3.Project… Continue reading Incorporate SLDS into Javascript Application(Vue.Js)

Apex · Lightning · Salesforce · Trigger

Asynchronous Apex Trigger using Change Data Capture

Change Data Capture event is a notification that Salesforce sends when a change to a Salesforce record occurs as part of a create, update, delete, or undelete operation. When we are saving a record in salesforce it causes the platform to start apex transaction . Change event triggers run asynchronously after the apex transaction is… Continue reading Asynchronous Apex Trigger using Change Data Capture

Apex · Lightning · Lightning Web Components · Salesforce

Opening Lightning Web Component (LWC) as subtab in Lightning Console

Are you facing problems in opening Lightning Web Component (LWC) as workspace tabs and sub-tabs in a Lightning console app? As some of you would know, in Lightning console apps records open as workspace tabs and their related records open as subtabs. This blog explains to you, how a user can open LWC as subtab,… Continue reading Opening Lightning Web Component (LWC) as subtab in Lightning Console

Lightning · Salesforce

Drive User Action with Floating Prompts in Lightning Experience

Think of driving employees to complete compliance training, pushing them to fill out a GPTW annual survey or  sending reminders for completing Salesforce certification maintenance exams.  Salesforce Floating prompts can assist you to drive employee actions, broadcast company news, send recurring reminders & more.  Let us look at an illustration for a Floating prompt. Below… Continue reading Drive User Action with Floating Prompts in Lightning Experience

Lightning · Lightning Web Components · Salesforce Releases

Summer’20 Release Treasure Hunt: Top Features

Summer’20 is just around the corner… and with every release Salesforce introduces new features and enhancements made to the platform. Thus enhancing our productivity by using the native declarative and programmatic features. Summer’20 official Release notes are not yet out, below are few features we have identified as few and among the coolest ones! Let’s… Continue reading Summer’20 Release Treasure Hunt: Top Features

Lightning · Outlook

Outlook connection with Salesforce through custom Objects

This blog post helps you to integrate Microsoft Outlook with Salesforce by using Lightning for Outlook sync by OAuth 2.0 connection method and create Custom Objects data from outlook. Set Up Lightning for Outlook in the Microsoft Outlook For setting up of Outlook connection to salesforce, please follow the below blog from points 1-9 to setup… Continue reading Outlook connection with Salesforce through custom Objects

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

Lightning · Lightning Web Components

Using Modal/ Popup in Lightning Web Components

In this blog, we will be learning to use Modal/ Popup in Lightning Web Component. We will be using SLDS classes that helps in showing or hiding the Modal. The below classes help in showing and hiding of the modal slds-fade-in-open – Shows the modal slds-backdrop_open – Shows the backdrop(greyed out) So, adding and removing… Continue reading Using Modal/ Popup in Lightning Web Components

Lightning · Lightning Web Components

LWC with Aura Components,Calling controller from LWC,LDS in LWC

Calling controller from LWC: Lightning web components can import methods from Apex classes into the JavaScript classes using ES6 import.Once after importing the apex class method you can able to call the apex methods as functions into the component by calling either via the wire service or imperatively. Import Syntax import apexMethod from’@salesforce/apex/Namespace.Classname.apexMethod’; apexMethod :… Continue reading LWC with Aura Components,Calling controller from LWC,LDS in LWC