Posts

Showing posts with the label apex datatable

apex:datatable> Datatable in Visualforce

Image
-- Visualforce-- <apex:page controller="mydatatable">  <apex:form >      <apex:pageBlock >          <apex:dataTable value="{!data}" var="dat" cellpadding="10" cellspacing="30" >                                     <apex:column >                       <apex:facet name="header"> Ids</apex:facet>                       <apex:facet name="footer"> Ids</apex:facet>                       <apex:outputText > {!dat.id}</apex:outputText>               </apex:column>                               <apex:column >                      <apex:facet name="header">names</apex:facet>                      <apex:outputText > {!dat.name}</apex:outputText>                      <apex:facet name="footer">names</apex:facet>               </apex:column>                                </apex:dataTable>