Custom Display The custom display properties lets the page designer customize the display of the data using HTML and JavaScript. The custom display appears after the default display (if the Display Fields property is defined). Three properties define the custom display. The example in each property illustrates how to display the FullName field of the search results in an HTML table. Table 13. Custom Display Element Description Results Header Allows you to set the value of this property that is rendered once before the Results Body. This property is a good place to include any JavaScript file, defining any JavaScript function, or define any HTML elements for the header. Example: These are the customers that match your search criteria.<br><table><tr><th>Full Name</th></tr> Results Body Allows you to set the value of this property that is repeated once for every row in the search results. You can use the <%field name%> field replacement expression to refer to the value of a certain field. Example: <tr><td><%FullName%></td> Results Footer Allows you to set the value of this property that is rendered once after the Results Body. Example: </table>