Questions tagged [lightning-web-components]
This tag is for questions related to JavaScript, CSS, or Markup when used in the Lightning Web Component (LWC) programming model, or for questions of interoperability between LWC and the original Aura-based lightning components.
9,026 questions
0
votes
0
answers
17
views
How to fix Self Registration form with SSO?
I’ve configured SSO with Salesforce as the Identity Provider (IdP) and Raisely as the Service Provider (SP). The SSO setup is for a Salesforce Experience Cloud (Community) site.
Logging in with an ...
0
votes
0
answers
39
views
Use External Id to populate Lookup when creating SObject Record from LWC
So I want to be able to leverage the ability to populate lookup fields via an External Id when creating a record from LWC. Typically this is how one would do that in Apex:
Child_Object__c c = new ...
0
votes
1
answer
37
views
LWC within omniscript not refreshing based on value changes in omniscript
I have an Omniscript with a custom picklist field (Picklist value populated from the Apex method), which is working fine. Within the same step as this picklist field, I have an LWC and I am sending ...
0
votes
1
answer
74
views
+100
Issue with using FullCalendar.IO 3rd party lib in LWC
I followed the instruction present in the website to use FullCalendar - https://fullcalendar.io/docs/initialize-globals . I downloaded the zip file and compressed just the index.global.min.js and ...
0
votes
1
answer
23
views
Filter Stages Displayed in Custom LWC
I have been searching without any success. Is it possible to display a filtered list of stagename values in a lighting-input-field that is in a lightning-record-edit-form ? Here is the current code ...
1
vote
0
answers
34
views
2GP managed package: calling external APIs that require authorization
First , bit of a rant
<rant_starts>I have had an absolute nightmare of a time building an LWC/Apex 2GP package. So many things that should be simple are complex and have gone wrong, even with ...
0
votes
1
answer
32
views
How do I pass data from LWC to Screen flow Dynamically, Without going to next screen?
I want to fetch a Variable's value from a LWC to Screen flow dynamically, without going to next screen. Later I want to use the returned value to pass in another LWC.
Any suggestion would be helpful.
0
votes
0
answers
41
views
Visualforce iframe inside LWC blocked by Clickjack protection refuses to connect
I was embedding a Visualforce page inside a Lightning Web Component (LWC) using an . The Visualforce page doesn’t have headers:
<apex:page
controller="CustomController"
...
-1
votes
0
answers
21
views
How to preview word file in salesforce Lightning web component with water mark
We have received an urgent requirement that involves enabling the preview of various file types within a Lightning Web Component (LWC). The supported file types include:
Word documents, PDF files, ...
0
votes
0
answers
48
views
LWC component not rendering in Agentforce
I am trying to show credit score of my leads in Agentforce. I am using a LWC to show that in the agent console, but I am getting this issue. I don't know what I am doing wrong, I cant see the LWC ...
0
votes
0
answers
28
views
Trigger screenflow when Child updated from related list
I need to display a Screen Flow popup when a record is updated from a related list, but only when certain conditions are met. I know about the “Detect and Launch Flow” from UnofficialSF — it works ...
0
votes
0
answers
15
views
Is it possible to open the standard email action box from an LWC?
This standard email box that is fixed to the bottom bar of the console:
It would be ideal to open this one from a custom LWC, as this box lets you move around the console without losing the added ...
-1
votes
0
answers
50
views
Navigation Mix is not working within screen Flow
I have a requirement where I need to open std record creation page(based on recordTypes chosen) from a screen flow by prepopulating certain values collected from the flow earlier. I tried to tackle ...
0
votes
1
answer
43
views
LWC Datatable showing timezone when modifying date field
I have a datatable with one column showing a date value. The value shown is directly retrieved from SF as a date, but when I click on it to modify it there's a time selector, which I don't want there. ...
0
votes
0
answers
20
views
How to dynamically load a remote React remoteEntry.js (Webpack Module Federation) inside LWC without using Aura, iframe, or static resources?
I’m trying to integrate a React micro-frontend into Salesforce using Lightning Web Components (LWC) and Webpack Module Federation.
My goal is to dynamically load the remote React app (remoteEntry.js) ...