diff --git a/README b/README index 332488f..0d4aceb 100644 --- a/README +++ b/README @@ -10,4 +10,14 @@ Create a “generic related list” Visualforce component that can be configured Requirements ============ -

Create a Visualforce component based upon the following requirements for input the parameters. There may be more parameters needed then the ones below so feel free add as many as needed.


The components can use either a standard controller, custom controller or controller extension.

\ No newline at end of file +Create a Visualforce component based upon the following requirements for input the parameters. There may be more parameters needed then the ones below so feel free add as many as needed. + +- Object Name (in our case Opportunity) +- Collection of field meta data: (will display as columns on the list) +--- field name (string) +--- sortable (true/false) +--- sort direction (asc/desc) +--- sort order (int) +- Where clause - a string that is applied to the dynamically generated SOQL (e.g., “Active__c = true”). Make sure you prevent SOQL injections. +- Component should provide a function to determine how many rows it is displaying. +- Component should provide paging if resultset is beyond a certain number of records. It will need a parameter to determine how many rows the data table should display. For example, page after 5, 10, 25, 50 results. The components can use either a standard controller, custom controller or controller extension. \ No newline at end of file