Activity › Forums › Salesforce® Discussions › How to make quick lightning action in Salesforce?
Tagged: Force LightningQuickAction, Force LightningQuickActionWithoutHeader, Lightning Action, Lightning Components, Lightning Experience, Salesforce Mobile App, Salesforce Records
-
How to make quick lightning action in Salesforce?
Posted by Aman on September 23, 2018 at 11:19 PMHow to make quick lightning action in Salesforce?
Avnish Yadav replied 7 years, 7 months ago 4 Members · 3 Replies -
3 Replies
-
Add the force:lightningQuickAction or force:lightningQuickActionWithoutHeader interface to a Lightning component to enable it to be used as a custom action in Lightning Experience or the Salesforce mobile app. You can use components that implement one of these interfaces as object-specific or global actions in both Lightning Experience and the Salesforce app.
- [adinserter block='9']
-
Quick Action/Lightning Actions is an Object-specific action. Object-specific actions let users create records that have automatic relationships to other records, make updates to specific records, and interact with records in ways that you define.
Lightning actions are built on the existing salesforce Lightning Component Framework that you may already have adopted. So you can easily convert your existing Lightning components to actions and use them in Lightning Experience and Salesforce1 Application.
<aura:component implements=”force:lightningQuickAction”>
<center><b>This is a Lightning component </b></center>
</aura:component> -
Hello,
To display a lighting component as a Quick action to an object, It must be implemented withforce:lightningQuickAction OR force:lightningQuickActionWithoutHeader.
Thanks.
Log In to reply.