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
MystwalkerMystwalker 

separating elements from apex:detail, relatedlisthover

I created an custom object to quickly generate a meeting briefing and

I'm currently using this line of code to display opportunities, contacts and activities related to an account:

 

<apex:detail subject="{!Account_Review__c.Account__r.Id}" relatedListHover="true"  />

 

But I would like to access each of these informations (opportunities, contacts and activities) seperatly at different sections in my review instead of all of it at the end. I would also like to be able to display all informations without the need to press "show more" severals times. 

 

Is there someway to do that with the professional edition using visualforce?

wesnoltewesnolte

Hey

 

The functionality you need probably requires the use of VisualForce pages using an Apex controller. Combined these two things can accomplish almost any technical need.

 

Cheers,

Wes