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
SFRajSFRaj 

Is there any way to hide relatedListHover using url parameters in standard page?

Hi,

 

I am developing a visualforce page to show standard page in an iframe. On that iFrame am using standard page as source. I dont want relatedlisthover links on that iframe. But I want relatedlist details.

Chi-Towns FinestChi-Towns Finest

You can have your iFrame direct to a VF page, for example:

 

<apex:page standardController="Account">

     <apex:detail relatedListHover="false" />

</apex:page>

 

This will give the page with all of the standard details and related list, but without the hover links.

 

I hope this helps!

SFRajSFRaj

Hi,

 

https://XX.salesforce.com/XXXXXXXXXXXXXXXXX?isdtp=vw. Passing url parameter isdtp=vw will give the standrd page like Apex:Detail. 

 

I want the parameter like this to hide the relatedListHover.

 

FYI.

 

https://XX.salesforce.com/XXXXXXXXXXXXXXXXX?isdtp=vw&hideRL hides the related list.

 

 

https://XX.salesforce.com/XXXXXXXXXXXXXXXXX?isdtp=vw&hideDL hides the detail list. I want the parameter like this.