Blogs
-
Distinguish between the LWC applications being used by the user.
I am developing a custom Account LWC right now and we have to Apps for different Regions. For that I have created two Apps to do this. The Problem is that the some Users are working in both Apps and also they could have to Tabs open, one for the Region A and one for…
-
Async/await functionality does not function as expected within LWC components when using Firefox.
We tried to use it in our LWC async/await but it is not working only on Firefox. Here is a simple example. On the Firefox this alert doesn’t show.
-
How to Choose the Initial Record from a Set of Multiple Records
I have a custom sObject which has among others the following fields: email__c (email), some_date__c (date), external_id__c (integer) and criteria__c (string). There are multiple records for this sObject that have the same value for email__c. If an email address returned in the results has multiple records we want to select the record with the most recent date. If there is…