Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save zokito/7155311 to your computer and use it in GitHub Desktop.
Save zokito/7155311 to your computer and use it in GitHub Desktop.
<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