You need to sign in to do that
Don't have an account?

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?
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