Activity › Forums › Salesforce® Discussions › How to implement process indicator in Salesforce lightning component?
Tagged: Lightning Process Indicator, Process Indicator, Sales Path, Sales Process, Salesforce Implementation, Salesforce Lightning Component
-
How to implement process indicator in Salesforce lightning component?
Posted by Yogesh on November 28, 2019 at 8:56 AMI have to implement process indicator in a lightning component.
Nikita replied 6 years, 5 months ago 3 Members · 2 Replies -
2 Replies
-
Hi Yogesh,
Check the following code for implementation of process indicator in a lightning component:-
<aura:component> <lightning:progressIndicator currentStep="3" type="base" hasError="true" variant="base"> <lightning:progressStep label="Step 1" value="1"/> <lightning:progressStep label="Step 2" value="2"/> <lightning:progressStep label="Step 3" value="3"/> <lightning:progressStep label="Step 4" value="4"/> </lightning:progressIndicator> </aura:component> - [adinserter block='9']
-
Hi,
A lightning:progressIndicator component displays a horizontal list of steps in a process, indicating the number of steps in a given process, the current step, as well as prior steps completed. For example, Sales Path uses a progress indicator to guide sales reps through the stages of the sales process.
<aura:component> <lightning:progressIndicator currentStep="3" type="base" hasError="true" variant="base"> <lightning:progressStep label="Step 1" value="1"/> <lightning:progressStep label="Step 2" value="2"/> <lightning:progressStep label="Step 3" value="3"/> <lightning:progressStep label="Step 4" value="4"/> </lightning:progressIndicator> </aura:component>
Log In to reply.