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 · 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 · 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