HTML - Fluid Topics - Latest

Design a Custom Component

Category
How To
Audience
public
Version
Latest

The following HTML content sets up a container for the table. Copy and paste this sample code into the HTML section of the custom component editor.

<div id="result">
 <table id="result_table">
    <thead>
     <tr>
       <th>Type</th>
       <th>Title</th>
       <th>Last edition</th>
     </tr>
   </thead>
   <tbody>
   </tbody>
  </table>
</div>
<div id="result_paging"></div>