Ravi Shah
Ravi Shah

Reputation: 873

Is there any way to remove save and cancel in lightning modal popup

Is there any way to remove save and cancel shown in the modal popup of lightning screen?.

Save Button Remove

How to Remove that disable Save button from lightning model popup?

Upvotes: 0

Views: 4110

Answers (2)

It would be great to know where the modal popup came from to provide you with more guidance. In case you are using a Quick Action with an Aura Component, you can achieve that by implementing the force:lightningQuickActionWithoutHeader

<aura:component implements="force:lightningQuickActionWithoutHeader">

You can check https://developer.salesforce.com/docs/component-library/bundle/force:lightningQuickActionWithoutHeader/documentation

Upvotes: 1

RolyP
RolyP

Reputation: 13

If the modal popup is custom, you can look for the

<footer class="slds-modal__footer">

and inside of this class, there should be a type of button, either

<lightning: button/> OR <button>

with the specific values you are looking for. Comment or delete those, or delete the footer itself.

Upvotes: 0

Related Questions