Tag Archives: aura method

How to invoke an LWC Component function from Aura Component

In this post, we will learn how to Invoke an LWC Component function from Aura Component when an event occurs in Aura. If we want to Invoke LWC function, we need to follow the steps mentioned below: LWC component function should be declared as public starting using @api decorator. We can invoke the LWC component… Read More »

How to create a dynamic multi-filter object in Salesforce-Part II

In continuation to our previous blog, where we worked on the UI for the dynamic multi-filter object. In this blog, we will be working on the back process/functionality. GetFieldsListController.js GetFieldsHelper.js Output: – Filter-input When you hit that Add button, it will get added to the filter, as shown in the image below. Multi-filter Added In… Read More »

How to create a dynamic multi-filter object in Salesforce-Part I

In this blog, we will discuss how to create dynamic multi-filter objects in Salesforce. Dynamic Filter is critical when we deal with a large set of data. It gives the required set of data instant of spending time on the static data. It helps users to deal with data easily. But, Salesforce does not provide… Read More »

How to Display Toasts or Notices using Lightning : NotificationLibrary

In this blog, we will discuss on how to display messages via toast or notices using Lightning:NotificationLibrary component. Lightning:NotificationLibrary Lightning:NotificationLibrary component provides an easy way to display messages via toasts or notices. However, Toast message helps in providing feedback to users. Above all, a toast message can be closed automatically after the predefined period of… Read More »

How to add Utility bar in a Salesforce lightning application

In this blog, we are going to learn about how to add utility bar in a lightning app. The component helps user, save navigation time, that they might have consumed while performing certain tasks. Firstly, it helps us to achieve it by just a few click without having to navigate to a different page. Secondly,… Read More »

How to Dynamically set base 64 image in lightning: carousel image

In this blog we are going to learn about how to dynamically set image in lightning: carousel. We use this component to display the collection of image. In addition, this component show only one image at a time. For example, let’s start with these component’s attribute. Src: This attribute stores the path of the image.… Read More »

Using Aura method to pass value from Child component to Parent component (with example)

In this blog, we will discuss how to 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 component event. The <aura:method> tag has following attributes: Attribute Type Description name String The method name.… Read More »