Return to Snippet

Revision: 30016
at August 6, 2010 03:24 by d3developer


Initial Code
<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>

Initial URL


Initial Description


Initial Title
@jeffdonthemic apex:datatable

Initial Tags


Initial Language
Other