Questions tagged [spinner]
The spinner tag has no summary.
22 questions
0 votes
0 answers
155 views
lwc spinner does not stop in salesforce screen flow
I've integrated my custom lwc spinner to the screen flow. It just basically shows spinner if the boolean variable is true. I've called the lwc from my flow, given the boolean input. After my Apex call ...
0 votes
2 answers
867 views
In LWC, how to put up spinner while long running Apex method runs
I want to put up a spinner while a long-running operation runs when a button is pressed. I try conditionally rendering via a member variable set in them method that handles the button without success....
0 votes
1 answer
44 views
Display spinner in Visual force page with onclick confirmation dialog
I want to display the spinner when I click on merge button and after clicking yes on the confirmation dialog but the spinner isn't working with onclick confirmation dialog. Here is a snippet of my ...
0 votes
1 answer
774 views
Lightning-modal spinner overlay screen
I'm using the new feature: lightning-modal and using a lightning-spinner: <template> <lightning-modal-header label="Test"></lightning-modal-header> <lightning-modal-body ...
0 votes
1 answer
168 views
lightning-spinner does not show up when a js function is working
Here is my code // Need to use the result from Promise but it is coming false const validateCompleted = await this.validateData(data); if(validateCompleted){ ... } // When validating data, I want ...
0 votes
1 answer
60 views
Not getting RecordId on feedItem component in Aura!
I am new to salesforce and started learning it a few days back, here am trying to make develop a community and I developed one but getting a few 2 bugs that I need to resolve. In my community I have ...
1 vote
1 answer
530 views
Hide Spinner on LWC load with multiple wire methods
I have created a LWC which is called from quick action. The component has multiple wire methods that retrieves data from the record (field values, picklist values and so on) once the component is ...
-1 votes
1 answer
237 views
Implementing a Spinner in Aura Lightning Components
I'm working on an Aura Lightning component setup consisting of a parent component and two custom child components. When the user clicks the "Filter" button in the parent component, data is ...
0 votes
2 answers
2k views
Show/hide spinner every time @wire is called
I have a lwc with multiple wires that retrieve information and I need to display a spinner while all this calls are being made and hide it whenever they finish. I've seen that you can do this wiring ...
0 votes
0 answers
139 views
Calling a function from a class in a different lightning web component
I am trying to show a lightning spinner on search and disable it after the search has loaded. The method that calls the search is in a different file than the related html to show the spinner, which ...
1 vote
0 answers
135 views
LWC spinner removes filter values
I have this page that displays a list of clients which can be filtered based on 4 fields. Because data retrieval took quite a while, so I have decided to add a spinner. However it seems that now the ...
1 vote
2 answers
15k views
To display the spinner until all the data is rendered on the UI in LWC
<lightning-button-icon icon-name="utility:chevrondown" variant="bare" name="add-PickUpWindowSelect" ...
1 vote
3 answers
2k views
Show spinner right next to lightning-input prior to pre-population of the data
Requirement: I have a simple input form (LWC) where our customers can enter necessary details and submit it our approvals team. We have an input field where we are pre-populating it with the data ...
0 votes
2 answers
485 views
Lightning spinner displaying over navigation
I'm creating an LWC to display on a record page. When the spinner over the component is shown, it displays over the top navigation when you scroll down (shown below). Is there any way to change this ...
2 votes
2 answers
4k views
Lwc spinner Container Position Issue
The spinner container moves up when I scroll down. How to fix the issue without using the spinner inside a modal? <template> <div class="slds-theme_default"> <div ...