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
AncaDAncaD 

Customize a standard related list

I am trying to display a field in a standard related list (of a custom object) based on a filtering condition, i.e. make it visible only for specific values of another field. What is the easiest way to do this?

 

 

 

Thanks in advance

thangasan@yahoothangasan@yahoo

Hai use 'rendered'

 

Example

 

   <apex:relatedList subject="{!enquiry}" list="EnquiresQA__r" rendered="{!enquiry.managementType__c='QA'}"/>

 

Regards

Thanga 

AncaDAncaD

Thanga, thanks for your response.

 

I actually need to conditionally display a Field in the related list. I was wondering if I can do it without creating a VisualForce page.