Posts

Showing posts with the label Datatable in Visualforce

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 >   ...