Skip to content

Instantly share code, notes, and snippets.

@benewen96
Last active August 1, 2016 21:25
Show Gist options
  • Save benewen96/937a82e1f0007ae47c4e399dfcb0a721 to your computer and use it in GitHub Desktop.
Save benewen96/937a82e1f0007ae47c4e399dfcb0a721 to your computer and use it in GitHub Desktop.
<apex:page standardController="Backlog__c" sidebar="false"
recordSetVar="items" showheader="false" standardStylesheets="false"
docType="html-5.0">
<!-- Start of Snippet 2 -->
<table id="backitemTable" class="display card-panel white">
<thead>
<tr>
<th>Idea Name</th>
<th>Description</th>
<th>Points</th>
</tr>
</thead>
<tbody>
<apex:repeat value="{!items}" id="backItemsRepeat" var="i">
<tr>
<td>{!i.name}</td>
<td>{!i.Description__c}</td>
<td>{!i.Point__c}</td>
</tr>
</apex:repeat>
</tbody>
</table>
<!-- End of Snippet 2 -->
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment