Created
May 24, 2011 21:38
-
-
Save fractastical/989786 to your computer and use it in GitHub Desktop.
@jeffdonthemic apex:datatable
This file contains hidden or 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:dataTable value="{!accounts}" var="account" id="theTable"> | |
<apex:facet name="caption">table caption</apex:facet> | |
<apex:facet name="header">table header</apex:facet> | |
<apex:facet name="footer">table footer</apex:facet> | |
<apex:column> | |
<apex:facet name="header">Name</apex:facet> | |
<apex:facet name="footer">column footer</apex:facet> | |
<apex:outputText value="{!account.name}"/> | |
</apex:column> | |
<apex:column> | |
<apex:facet name="header">Owner</apex:facet> | |
<apex:facet name="footer">column footer</apex:facet> | |
<apex:outputText value="{!account.owner.name}"/> | |
</apex:column> | |
</apex:dataTable> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment