Last active
August 1, 2016 21:25
-
-
Save benewen96/937a82e1f0007ae47c4e399dfcb0a721 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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