Category: AURA
aura
AURA and LWC Refresh by Each Others
This code will help to refresh AURA and LWC to each other. Use case :- Suppose that you are using AURA components and LWC components on any of lightning record […]
Fetch Salesforce Record in LWC without Apex
How to use getRecord() in LWC and fetch a single record without Apex method. For solution we can use the out of the box methods (getRecord) Below steps that we need to […]
How to make the code Reusable in LWC
Re-usability means a common service component that’s allow multiple developers to access existing code or they can add extra code for reusable. We need to focus on re usability in […]
Salesforce Lightning Aura Method
aura:method Use aura:method to define a method as part of a component’s API. This enables you to directly call a method in a component’s client-side controller instead of firing and handling a […]
Application event in Lightning AURA component
Lightning framework is based on event-driven architecture which allows to communicate between different events. Lightning events are fired from JavaScript controller actions that are triggered by a user interacting with […]
Component event in lightning component(AURA)
Component Events are fired by the child components and handled by the parent component.A lightning framework is an event driven architecture i.e communication between the components takes place by using […]
How to call method of child LWC component from parent Aura component?
To call method of child LWC from parent Aura component we will need to decorate the child LWC method with @api decorator, In AURA component we need to first assign […]
Salesforce Lightning Locker Service
What is Lightning Locker Service? Salesforce link Enforces powerful security architecture in single page applications built using lighting components. Isolates the components belonging to one namespace from the components belonging […]