Skip to main content

Posts

Showing posts from 2019
Salesforce Lightning Web Component - Dual List Box with Search Today in this post, we are going to learn that how we can use Search Functionality in Dual List Box from Salesforce Lightning Web Component . The use case could be, I have 2 custom objects. One is Job Posting Site OR Company & another is Position . Now as per the request of HR department, we have created one Junction Object Posting , which will have Lookup relation with Job Posting Site as well as Position. So, one Job Posting Site can have multiple Open Positions. We can easily add or remove mapping/junction based on Job Position is open or closed. Step 1/5: Create Custom Objects & Fields 1. Create Custom Object: ' Job_Posting_Site__c '     Create Field ' Name ' &  Datatype: ' Text ' 2. Create Custom Object: ' Position__c '       Create Field ' Name ' &  Datatype: ' Text '     You can add multiple fields based on requirements s...