Tag Archives: Lightning web component

Custom Approval Process in Salesforce – Part 1

In this blog, we will discuss how to Create Custom Approval Process. But, the Purpose of creating Custom Approval Process is when the client wants any addition in Approval UI or any validation on Approval screen then we can’t achieve that because of Standard Functionality, so then we have created our own Approval Process. So… Read More »

The @track Decorator Is No Longer Required for Lightning Web Component but with one Exception

We are referring here to Spring ’20 Release Notes available on the Salesforce help section. We have removed the @track decorator from all the variables in our test project, but it was not working for the few variables. After more detail, we found one exception while removing the @track decorator, i.e., when using objects. So,… 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 »

Key Event/Listener in LWC (Lightning Web Component)

Lot of times user needs to enter data quickly.  In this case we would like to share with you how we have built a custom screen to enter Order Lines data quickly. But we had a unique requirement is that wherein when the user enters ENTER keyword, control needs to go to next line on… Read More »

How to add Lightning Web Components as Custom Tabs in Salesforce

As per Winter ’20 release notes, you can now add the Lightning Web Component as Custom Tab in Salesforce. So in this blog, we will understand how to create custom tab of Lightning Web Component. As we all know the <component>.js-meta.xml configuration file defines the metadata values for the component. To define lightning tab, add the lightning__Tab target to… Read More »