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
Awesome User11Awesome User11 

Unexpected Behavior for VF Page on Lightning Layout

I am having a major issue with the embedded VF page on my Opportunity Object layouts. I am using the Lightning Experience.
1) In Create New or Edit Mode - the record if not touched jumps down to the embedded VF Page.
2) If on the Details tab, the record, jumps down to the embedded VF page (even if there is data present).
Can this be disabled? Can the VF not show up in Edit/Create mode in Lightning?
 
<apex:page standardController="Opportunity" showHeader="false"   docType="html-4.01-strict">
   <CRMC_PP:Grid ObjectName="Custom_Object__c" FKName="Opportunity__c" FKValue="{!Opportunity.Id}"  DelayLoad="false"  ViewID="a0aP0000003IJC4IAO" 
    EnableNewButton="false"  EnableNewInline="false"  EnableEdit="false"  EnableActions="false"  EnableFieldChooser="false" 
    EnableStickyViews="false"  EnableToolbar="false"  EnableViews="false"  EnableFormatting="false"  EnableReadingPane="false" />
    <CRMC_PP:DrillUp />
    </apex:page>

 
Awesome User11Awesome User11
FYI - this is a Managed Package VF Page creation.