Questions tagged [button-overrides]
Override the behavior of standard buttons
168 questions
1 vote
1 answer
53 views
New button override using Visualforce - Master-detail field not populated after override
My custom object B is a child of Contact. Object B has a master-detail field to Contact. Whenever I create a new record, the master-detail field on object B(child) is populated with Contact(parent) ...
0 votes
0 answers
83 views
Visual bug on "Show More Results..." modal fired from the standard lookup component in a screenflow?
I'm creating a screenflow that overrides the "New" button on a custom object. The first screen contains a standard lookup component for users to select a record to relate the new custom ...
0 votes
0 answers
613 views
Override standard new button with Aura component and display a message
I have overridden the standard new button from Quote object and I want to display a message when user clicks on the button. <aura:component implements="flexipage:availableForRecordHome,force:...
0 votes
0 answers
206 views
Override 'New Account' lookup input field with flow
I have standard object Campaign where I have custom field My_Company__c which is Lookup(Account) data type. When I click on this field and want to create new Account by clicking on 'New Account'. I ...
0 votes
1 answer
79 views
Call LWC from Aura , reset fields doesn't work
I'm calling LWC from Aura component , (im overriding the standard new button ) <lightning-record-edit-form> <lightning-input-field ... ... <lightning-button label={LWC_Cancel} size="...
1 vote
1 answer
735 views
Refresh Original Record Page's related lists from Related Record's Override Aura/LWC
I'm currently looking for solutions for how to refresh the related lists on a record page from an LWC. Here's what to know: I have an Object Action which has its New button overwridden by an Aura ...
0 votes
2 answers
4k views
Overriding New button with LWC wrapped in Aura but additional tab keeps opening and I cannot close it
I'm trying to override a New button (from List view) with LWC wrapped in Aura. The thing is, I want the New button redirect to a record page, meaning - the New button should create the record and ...
0 votes
1 answer
318 views
Unable to Upload Files of Lightning Flow launched by Visualforce
We are using Visualforce override page for New Case Action that is triggering Lightning Screen Flow via Lightning Out. The Lightning Runtime in Visualforce Page was Rendered according to Salesforce ...
0 votes
1 answer
1k views
Overwrite New acton button for custom object
I'm new to salesforce development, and I want to overwrite the New action button for my custom object. Here is my VFP code. <apex:page standardcontroller="Document__c"> <...
1 vote
1 answer
1k views
Lightning Component Override for NewCase button is not working
I would like to launch a Flow instead of the standard "NewCase" button to create a Case. I have followed some instructions to create a Lightning Aura Component to launch the Flow in a modal, ...
1 vote
1 answer
991 views
How to keep override standard New/Edit Button After the Production Deployment
I have override standard New/Edit Button of the Custom Object.As the Production Deployment happens override standard New/Edit Button will change to Standard New/Edit Button,For every Production ...
0 votes
1 answer
573 views
Need Help Finishing Code to Change Aura Button Color for Flow
I am following this Salesforce article to modify the "brand" button variant with a custom color, but it will not use my css styling changes. The goal is to use it in Screen Flow, and also ...
2 votes
2 answers
4k views
Override Related List's New button to open Screen Flow in a modal
I want to create a button on the related list which could open up a Screen flow as a modal.
1 vote
1 answer
1k views
Override new button aura wrapper with lwc functions does not work
I am overriding new button with aura and using inside aura my lwc. But I cann't invoke any lwc fucntion. I added debug points, but they are not triggered. So it seems that methods are not called at ...
1 vote
0 answers
43 views
LEX replacement for Delete override that only applies to UI-initiated delete action?
As prep for migrating to LEX, we need to replace our existing Delete overrides for Quote and QuoteLineItem; they check a custom setting and a couple fields and determine if delete should be allowed. ...