function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
丹 朱丹 朱 

How to overwrite the Standard NEW Botton with the parent page is Standard List Page?

I wrote a Lightning component to overwrite the Standard NEW Botton,
Lightning component is a popup page, The parent page is blank page.

I want the parent page is Standard List Page. 
How to do it, who can you help me?
 
<aura:component implements="lightning:actionOverride" access="global" >  
<div class="demo-only" style="height: 640px;">
  <section role="dialog" tabindex="-1" aria-labelledby="modal-heading-01" aria-modal="true" aria-describedby="modal-content-id-1" class="slds-modal slds-fade-in-open">
    <div class="slds-modal__container">
      <div class="slds-modal__content slds-p-around_medium" id="modal-content-id-1">
        111
      </div>
      <footer class="slds-modal__footer">
        <button class="slds-button slds-button_neutral">Cancel</button>
        <button class="slds-button slds-button_brand">Save</button>
      </footer>
    </div>
  </section>
  <div class="slds-backdrop slds-backdrop_open"></div>
</div> 
</aura:component>
User-added image