• Sagnik Raha 39
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
I've a VF page where I'm using apex detail tag. This page is overriding the view button.Now, I want to show some data from another object in detail mode. For this, I created another VF page with extension controller. I created a new section on layout and embedded this page on the newly created section.Although,it's showing the data correctly on preview but not on the actual page?
I've removed the override and on standard layout it's working fine.
Is there some problem around the apex:detail tag used?

Any help for this problem?

Hello everyone,

 

I have overriden standard opportunity Edit feature. In order to provide inline edit i have to also override the view. The VF page used for the view is very simple and is as below. But now there is a problem. Another VF page which was embeded earlier as part of the opportunity page layout now comes as blank with this overriden view. I guess it is because of the detail tag - how can now i adjust that VF page with this functionality?

 

<apex:page standardcontroller="Opportunity">
    <apex:form >
        <apex:detail subject="{!opportunity.Id}" relatedlist="true" inlineedit="true"/>    </apex:form>
</apex:page>