Search in Related List

Search in Related List


Workaound:

Create an <apex:detail> and then add the <c:tableGrid> for the relatedList that we want-


<apex:page showHeader="false" sidebar="false"> 

    <apex:form >

        ...

        <c:tableGrid type="Opportunity" 

                     title="Opportunities"

                     fields="Name,StageName,Amount,CloseDate" 

                     sortBy="Name" 

                     image="/img/icon/theImage.png"

                     sortDescending="true"

                     mode="list"

                     customizeFields="true"

                     customizeFilter="true"

                     pageSize="5" />   

         ...

    </apex:form>

</apex:page>


reference - https://github.com/rsoesemann/visualforce-table-grid

Comments