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
ErikTheTinkererErikTheTinkerer 

How to add the Cloud Scheduler to the Open Activities related list

Hello,

 

I have overridden my contact layout with a vf page.

I have implemented the related lists as tabs under the main detail area.

In each tab, I have one related list: Open Activities, Activity History, etc...

 

I don't see how I should add the "New Meeting Request" button that launches the cloud scheduler, to my Open Activities related list.

 

I have edited all the standard page layouts to add the button...

And I have looked at the VF code for that list, and this is all I see:

 

 

        <apex:tab label="Open Activities" name="name2" id="tabTwo">
            <apex:relatedList list="OpenActivities"/>
             
        </apex:tab> 

 

 

But there is nothing in the VF docs about the New Meeting Request button...

 

Anyone know how to add this button to a VF page?

 

Erik