Custom Related List Component
This will only work for sandboxes as no test class has been added to the repo so far.
You may manually create the apex classes first within your org and then the visualforce page and the visual force component.
Just place the custom component anywhere inside your apex page tag, assign the require properties.
<apex:page standardController="CustomObject__c" >
<c:GenericRelatedList Fields="Field1__c,Field2__c"
Condition="RecordTypeId='Some_Specific_RecordTypeid' and CustoMObject__c='{!CustomObject__c.id}'"
SObjectType="CustomObjectRelated__c"
HeaderTitle="Related Records"></c:GenericRelatedList>
</apex:page>
- Produce better documentation and guide
- Review and clean code
- Include server side pagination.